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
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Why is c platform dependent?
What is the best organizational structure?
What is the size of empty structure in c?
How do I determine whether a character is numeric, alphabetic, and so on?
What is omp_num_threads?
Why is event driven programming or procedural programming, better within specific scenario?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is the use of void pointer and null pointer in c language?
How variables are declared in c?
Can we compile a program without main() function?
What is the difference between mpi and openmp?
Which is better between malloc and calloc?