I just got this book Teach Yourself C in 21 Days (which uses ANSI standard) and I can't get Visual C# to even use basic code like:
#include <stdio.h>
main() { printf( "Type stuff here" ); }
Although, Visual C++ will, but even then some of the syntax isn't being read as legal code.
How do I get Visual Studio to start using the ANSI standard...
Visual C++9
|