スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2105: '&=' には左辺値が必要です。
ソース(バグ有り):
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{ |
ソース(修正済み):
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{ |
スポンサード リンク