nonstandard extension 'single line comment' was used
Single-line comments are standard in C++ but nonstandard in C. A single-line comment in a C file generates an error under strict ANSI compatibility (/Za) or a warning under Microsoft extensions (/Ze). To disable this warning, use #pragma warning(disable:4001).
Example
int i; // warning int j; /* no warning */