I kind of understand what #define is good for, but when i see a thing like that,

Code:
#define SIZE 256
        char First[SIZE];
        char Second[SIZE];
wouldnt it be just simpler to write,

Code:
char First[256];
char Second[256];
or maybe i missunderstood something?

Thanks.