Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
preprocessor command must start as first nonwhite space
Remarks
The # sign of a preprocessor directive must be the first character on a line that is not white space.
Example
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>