What is the use of a semicolon (;) at the end of every program statement?
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 |
writ a program to compare using strcmp VIVA and viva with its output.
what is c programming?
What are .h files and what should I put in them?
Differentiate between declaring a variable and defining a variable?
what is a stack
Function calling procedures? and their differences? Why should one go for Call by Reference?
What are the different types of errors?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
write a programe to find the factorial of given number using recursion
how is the examination pattern?
How can you determine the maximum value that a numeric variable can hold?
How can you return multiple values from a function?