スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2042: 'signed' と 'unsigned' が 1 つの宣言内で同時に使われています。
ソース(バグ有り):
#include <mbstring.h> #include <stdio.h> int main() { |
ソース(修正済み):
#include <mbstring.h> #include <stdio.h> int main() { |
スポンサード リンク