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 |
Is there a way to jump out of a function or functions?
When a c file is executed there are many files that are automatically opened what are they files?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What are the advantages of union?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
What are the parts of c program?
who is first prime minister in india??
write a c programme for add of two numbers with out use of arthematic operators
What is actual argument?
Find the highest of three numbers and print them using ascending orders?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
The variables are int sum=10,SuM=20; these are same or different?