OK, i have a strange problem. I have this piece of code:
int *p;
int test;
p=&test;
In Visual C++ express, in my exsisting project, I get this error:
missing type specifier - int assumed.
'p' : 'int' differs in levels of indirection from 'char *'
'initializing' : cannot convert from 'char *' to 'int'
But when i create new project, same code is fine. Whats the problem please?