Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the use of a semicolon (;) at the end of every program statement?
Home
C Plus Plus
What is the use of a semicolon (;) at the end of every program statement?
asked
Jan 7
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
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.
...