Answer Posted / sahadev
Actually (;) is the sentence terminater in C.So it is also
C terminater
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
What is the use of typedef in structure in c?
What are pointers?
Explain void pointer?
How can you increase the allowable number of simultaneously open files?
What is #pragma statements?
what are the facialities provided by you after the selection of the student.
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
How can you increase the size of a dynamically allocated array?
Can we declare variables anywhere in c?
What is the size of structure pointer in c?
What is the default value of local and global variables in c?
How do you convert strings to numbers in C?
What is the difference between c and python?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is volatile variable how do you declare it?