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