InterviewSolution
Saved Bookmarks
| 1. |
Briefly explain syntax error. |
|
Answer» Syntax error is the result of violating the grammar of C programming language. When these errors occur, computer display an error message specifying the line number where the error has occurred. In the program segment a = 20, b = c; computer will indicate semicolon is missing. |
|