スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C3872: '0x3002': この文字を識別子で使用することはできません
ソース(バグ有り):
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
ソース(修正済み):
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
スポンサード リンク