Code Fix

初級error: expected ';' before ... の原因と直し方 › パターン1

error: expected ';' before ... の原因と直し方

文末のセミコロンを書き忘れたときに出るエラーです。

 1  #include <stdio.h>
 2  
 3  int main(void) {
 4      int x = 5_
                 ^
 5      printf("%d\n", x);
 6      return 0;
 7  }
main.c:5:5: error: expected ',' or ';' before 'printf'

空欄を埋めてコンパイル・実行を通す

広告
広告スロット(未設定)

error: expected ';' before ... の原因と直し方

エラーが指す行ではなく、その1つ前の行にセミコロンが無いことがほとんどです。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)