in C Plus Plus by
What is the use of a semicolon (;) at the end of every program statement?

1 Answer

0 votes
by
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.
...