Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
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>