スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C3530: 'auto' を他の型指定子と組み合わせることはできません
ソース(バグ有り):
#include <mbstring.h> #include <stdio.h> int main() { |
ソース(修正済み):
#include <mbstring.h> #include <stdio.h> int main() { |
スポンサード リンク