分享方式:


編譯器錯誤 C2013

遺漏 ' > '

#include 指示詞缺少右角括弧。 加入右角括弧,以解決錯誤。

下列範例會產生 C2013:

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

可能的解決方式:

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