This is the first time I ever use the “cout” command in my codes. I always use “printf” rather than “cout”, nothing special, just the habits of using old C language.
Anyway, I try to compile this simple program using the “cout”, but it return an error like this:
error C2065: ‘cout’ : undeclared identifier
To me, it’s [...]