What is the use of a semicolon (;) at the end of every program statement?
Answer Posted / hrpynux@gmail.com
In computer programming, the semicolon is often used to separate multiple statements (for example, in Perl, Pascal, and SQL; see Pascal: Semicolons as statement separators). In other languages, semicolons are called terminators and are required after every statement (such as in PL/I, Java, and the C family).
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of using macro in c language?
Can static variables be declared in a header file?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Why do we use main function?
Explain what is the difference between far and near ?
What is the use of f in c?
How does #define work?
What is sizeof array in c?
What is the use of ?
What is a nested formula?
Do you know the difference between malloc() and calloc() function?
Subtract Two Number Without Using Subtraction Operator
What are the different file extensions involved when programming in C?
What is static identifier?
Can a local variable be volatile in c?