Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
preprocessor command must start as first nonwhite space
The #
sign of a preprocessor directive must be the first character on a line that is not white space.
The following example generates C2014:
// C2014.cpp
int k; #include <stdio.h> // C2014
Possible resolution:
// C2014b.cpp
// compile with: /c
int k;
#include <stdio.h>
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in