InterviewSolution
Saved Bookmarks
| 1. |
What is the use of a semicolon (;) at the end of every program statement? |
|
Answer» It is majorly related to how the compiler reads( or parses) the entire code and breaks it into a set of instructions(or statements), to which semicolon in C acts as a boundary between two sets of instructions. |
|