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.
missing name following '<'
Remarks
An #include directive lacks the required filename.
Example
The following example generates C2012:
// C2012.cpp
#include < // C2012 include the filename to resolve
Possible resolution:
// C2012b.cpp
// compile with: /c
#include <stdio.h>