编译器错误 C2013

缺少“>”

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

下面的示例生成 C2013:

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

可能的解决方法:

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