スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
warning C4002: マクロ '__crt_countof' に指定された実引数の数が多すぎます。
ソース(バグ有り):
#include <string.h> #include <stdio.h> #include <stdlib.h> int main() { |
ソース(修正済み):
#include <string.h> #include <stdio.h> #include <stdlib.h> int main() { |
スポンサード リンク