I am trying to use arrays, but it wont compile. I am a little rusty, but this is how I think I remember them being used.
declaration:
Error:Code:int test[4];
Code:error C2040: 'test' : 'int [4]' differs in levels of indirection from 'int'
Printable View
I am trying to use arrays, but it wont compile. I am a little rusty, but this is how I think I remember them being used.
declaration:
Error:Code:int test[4];
Code:error C2040: 'test' : 'int [4]' differs in levels of indirection from 'int'
You need to post more of your code.
That declaration looks fine.
Ok this is weird, I just uncommented it and recompiled my program and it is now perfectly fine.