What is C language Terminator?
Answers were Sorted based on User's Feedback
Answer / deepak singh
terminator as name indicates,it is end of that particular line and line gets terminated and moves to next line and begins execution.It is denoted ;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / pinkey
yaa i think the terminator of c language is semicolon and
curly braces {}.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / bryan olson
The C language terminator is... C++
Faced with an ill-defined question, work with the
interviewer to re-state it precisely in the accepted
terminology of the field.
| Is This Answer Correct ? | 2 Yes | 10 No |
Write a simple code fragment that will check if a number is positive or negative.
what is the return type of printf
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
What is the value of uninitialized variable in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What are the disadvantages of external storage class?
write a program to print %d ?
Implement bit Array in C.
Why does everyone say not to use gets?
What was noalias and what ever happened to it?