スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2833: 'operator ;' は演算子または型指定子のどちらでもありません。
ソース(バグ有り):
// for 文の中で continue で処理をループ内の省略するサンプルプログラム
#include <stdio.h>
int main()
{ |
ソース(修正済み):
// for 文の中で continue で処理をループ内の省略するサンプルプログラム
#include <stdio.h>
int main()
{ |
スポンサード リンク