หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
missing '>'
Remarks
An #include directive lacks a closing angle bracket. Add the closing bracket to resolve the error.
Example
The following example generates C2013:
// C2013.cpp
#include <stdio.h // C2013
Possible resolution:
// C2013b.cpp
// compile with: /c
#include <stdio.h>