"" に関する原因と対処

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

スポンサード リンク

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

コンパイルエラーメッセージ:
error C2120: void 型が他の型と同時に使われました。

ソース(バグ有り):

#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; }

スポンサード リンク



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