次の方法で共有


コンパイラ エラー C2012

'<' の後に名前がありません

#include ディレクティブに必要なファイル名がありません。

次の例では C2012 エラーが生成されます。

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

考えられる解決方法:

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