スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2513: 'int': 指定された型は、識別子の名前を指定せずに宣言されています。
ソース(バグ有り):
#include <string.h> #include <stdio.h> #include <stdlib.h> int main() { |
ソース(修正済み):
#include <string.h> #include <stdio.h> #include <stdlib.h> int main() { |
スポンサード リンク