"" に関する原因と対処

このコンパイルエラーの原因と対処に関して説明します。

スポンサード リンク

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()); }

スポンサード リンク



[コンパイルエラーコード、メッセージに戻る]