Um, from what I know, you declare arrays in C++ by specifying the number of members in the array in [] _after_ the name of the variable in a variable declaration.

so you should have
Code:
bool KeyStatus[255] = {0}; //note that this only makes the first element of the array equal 0.