int main(void)
{
const int SIZE= 5;
int grades[SIZE]={78, 67, 92, 83, 88}; // variable-sized object may not be initialized
...
}
After compiling it, the computer shows " variable-sized object may not be initialized" and I dont want to replace SIZE with number 5 in the array, so can someone help me with this problem? Thanks in advance