Any C program Must contain at least one function. Need not contain any function. Needs input data. None of these TRUE ANSWER : ? YOUR ANSWER : ?
What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 Compilation Error 33 -1 1 TRUE ANSWER : ? YOUR ANSWER : ?
The recursive functions are executed in a ........... Random order Parallel order First In First Out order Iterative order Last In First Out order TRUE ANSWER : ? YOUR ANSWER : ?
Which of following is not a valid name for a C variable? None of these Exam_veda Examians Both A and B Exam veda TRUE ANSWER : ? YOUR ANSWER : ?
Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 0 1 14 None of these TRUE ANSWER : ? YOUR ANSWER : ?
char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=EDA y=VEDA y=MVEDA y=AMVEDA y=EXAMIANS TRUE ANSWER : ? YOUR ANSWER : ?
What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 1 0 0 0 None of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not a correct variable type? char int real float double TRUE ANSWER : ? YOUR ANSWER : ?
The default parameter passing mechanism is None of these. call by value result call by reference call by value TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 16 None of These 64 4 TRUE ANSWER : ? YOUR ANSWER : ?