הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
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>