Login
Remember
Register
Ask a Question
What is the use of a semicolon (;) at the end of every program statement?
0
votes
asked
Jan 7, 2024
in
C Plus Plus
by
GeorgeBell
What is the use of a semicolon (;) at the end of every program statement?
c-programming-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 7, 2024
by
GeorgeBell
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.
...