How to correct these errors;please tell the meaning
main.c:23:5: error: expected ‘)’ before ‘printf’
printf("your grade is first division");
^~~~~~
main.c:27:5: error: expected declaration or statement at end of input
return 0;
^~~~~~
Answers
Answered by
1
Answer:
The main cause of this error is - missing opening curly brace ({), before the printf() function.
before the ending curly braces add the statement
return 0;
Explanation:
Similar questions