初級 › 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'
空欄を埋めてコンパイル・実行を通す
文の終わりにはセミコロンが必要です。エラーは次に見つかった手がかり(ここではprintf)の位置を指すため、実際に直す場所は1行上です。
次の問題