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
int a,b,c

a = 20, b = c; computer will indicate semicolon is missing.



Discussion

No Comment Found