スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C4430: 型指定子がありません - int と仮定しました。メモ: C++ は int を既定値としてサポートしていませんソース(バグ有り):
#include "stdafx.h" main() { printf ("test"); }
ソース(修正済み):
#include "stdafx.h" int main() { printf ("test"); }
[コンパイルエラーコード、メッセージに戻る]