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
Explain what does the format %10.2 mean when included in a printf statement?
What is a dynamic array in c?
What is the difference between array_name and &array_name?
What is restrict keyword in c?
What are the standard predefined macros?
What is operator precedence?
Explain how can you avoid including a header more than once?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Explain how do you search data in a data file using random access method?
Can a variable be both static and volatile in c?
Is there sort function in c?
Describe the difference between = and == symbols in c programming?
What is structure data type in c?
Explain how to reverse singly link list.
Is a house a mass structure?