初級 › error: expected ';' before ... の原因と直し方 › パターン2
error: expected ';' before ... の原因と直し方
文末のセミコロンを書き忘れたときに出るエラーです。
1 #include <stdio.h> 2 3 int main(void) { 4 int total = 10 + 20_ ^ 5 printf("total=%d\n", total); 6 return 0; 7 }
main.c:5:5: error: expected ',' or ';' before 'printf'
空欄を埋めてコンパイル・実行を通す
式の後にセミコロンが無いと、コンパイラは文がまだ続いていると判断し、次の行の先頭で行き詰まります。
次の問題