I upgraded to vs2008 and now I can delcare and int, bool, or any primative data type, but when I delare a string it wont let me.
int ip; Works
char ip; Works
string ip; DOES NOT WORK
I get these three errors.
error C2146: syntax error : missing ';' before identifier 'ip
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int