"" に関する原因と対処

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

スポンサード リンク

Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:

コンパイルエラーメッセージ:
warning C4002: マクロ 'assert' に指定された実引数の数が多すぎます。

ソース(バグ有り):

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

int main(void) {
int i = 0;
assert( i !, 0 );
return 1; }


原因:


対処:


ソース(修正済み):

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

int main(void) {
int i = 0;
assert( i != 0 );
return 1; }

スポンサード リンク



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