スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C3863: 配列型 'const char [4]' を割り当てることはできません。ソース(バグ有り):
#include <stdio.h> int main() { printf( "%d\n"= _getmaxstdio()); _setmaxstdio(2048); printf( "%d\n", _getmaxstdio()); }
ソース(修正済み):
#include <stdio.h> int main() { printf( "%d\n", _getmaxstdio()); _setmaxstdio(2048); printf( "%d\n", _getmaxstdio()); }
[コンパイルエラーコード、メッセージに戻る]