This is probably a really simple thing but I\'m new to C++ so need help.
I just want to declare an array in my C++ header file like:
int lettersArr[2
Change what you have in the header to:
extern int lettersArr[26];
so that it will become a declaration, not a definition.