(Hope this is the right place to put this).
So, I think I'll try to make *something* on C++. Hope you can (and want to) help me
I've got this simple code:
#include <iostream.h>
int n
void main ( )
{
char mytable[4] = { 't', 'e', 's', 't' };
for ( n = 0; n < 4; n++ ) {
cout<<mytable[n];
}
cout<<mytable;
}
And it says error:
5:declaration syntax error
I can't get why it says so. Hope you show me the way.
Note. Maybe I'll need further help (lol). That's why the name of the topic is like that