WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / swati
to give indication to compiler that the printed statement
before terminator is ended and read next line of
program.Terminator is also known as "end of statement"
| Is This Answer Correct ? | 27 Yes | 0 No |
What is the correct declaration of main?
What is 1f in c?
do you think its fraud or original company?
How to implement a packet in C
Explain indirection?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
How many keywords (reserve words) are in c?
why java is called as a purely oops language.
Is there any possibility to create customized header file with c programming language?
Which node is more powerful and can handle local information processing or graphics processing?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }