分享方式:


編譯器錯誤 C2012

'' 後面的 < 遺漏名稱

#include 指示詞缺少必要的檔名。

下列範例會產生 C2012:

// C2012.cpp
#include <   // C2012 include the filename to resolve

可能的解決方式:

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