编译器错误 C2013

缺少“>”

Remarks

#include 指令缺少右尖括号。 添加右括号可解决该错误。

Example

以下示例生成 C2013:

// C2013.cpp
#include <stdio.h    // C2013

Possible resolution:

// C2013b.cpp
// compile with: /c
#include <stdio.h>