スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C3613: '->' の後に戻り型が指定されていません ('int' と見なされます)
ソース(バグ有り):
#include <direct.h> #include <stdlib.h> #include <stdio.h> int main( ) -> |
ソース(修正済み):
#include <direct.h> #include <stdlib.h> #include <stdio.h> int main( ) { |
スポンサード リンク