Creating external resources

Hello, I would like to know if and how can I create external file with resources.

Let's say, that I would like to create array of string[100][100].
It's quite much, and I would like to store it in another source file, so the main file is easier to read. Is there any way of doing it?(like, declaring array in main file, declaring members in another file, and then applying it to the main file)?

Thanks in advance.
main file:
1
2
#include <directory/bigArray.hpp>
x[]=bigArray(..,..)

bigArray.hpp:
1
2
3
string bigArray(..,...) {
//create array here
}

something like this should work.(the basic idea behind it)
Topic archived. No new replies allowed.