スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2131: 式は定数に評価されませんでした
ソース(バグ有り):
#include <stdio.h> #include <string.h> int main(void) { |
ソース(修正済み):
#include <stdio.h> #include <string.h> int main(void) { |
スポンサード リンク