What is the meaning of ';'?



Suraj Said

+0 -0

In C Programming semi-colon (;) is a sign for end of current statement and after that a next statement are started.
Statement do not include loop, switch case ,if else etc.



Ravi Said

+0 -0

The semicolon “;” in C is a symbol used as a statement terminator. It is placed at the end of a statement to indicate the completion of that particular statement.



Submit Your Response