スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
warning C4114: 同じ型の修飾子が 2 度以上使われています。
ソース(バグ有り):
#include <mbstring.h>
#include <stdio.h>
int main()
{ |
ソース(修正済み):
#include <mbstring.h>
#include <stdio.h>
int main()
{ |
スポンサード リンク