スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C2041: 指定された文字 '8' は、基数 '8' に適切な数字ではありません。ソース(バグ有り):
#include <stdio.h> int main() { printf( "%d\n", _getmaxstdio()); _setmaxstdio(0048); printf( "%d\n", _getmaxstdio()); }
ソース(修正済み):
#include <stdio.h> int main() { printf( "%d\n", _getmaxstdio()); _setmaxstdio(2048); printf( "%d\n", _getmaxstdio()); }
[コンパイルエラーコード、メッセージに戻る]