The statement int **a; is syntactically and semantically correct None of these. is illegal is legal but meaningless TRUE ANSWER : ? YOUR ANSWER : ?
If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 0 2 3 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54554 54544 45545 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is correct way to define the function fun() in the below program?#include<stdio.h>void main(){ int a[3][4]; fun(a);} None of these void fun(int *p[3][4]){} void fun(int p[][4]){} void fun(int *p[4]){} void fun(int *p[][4]){} TRUE ANSWER : ? YOUR ANSWER : ?
Which operator from the following has the lowest priority? Assignment operator Division operator Comma operator Conditional operator Unary-operator TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Forget it Error None of These Ok here TRUE ANSWER : ? YOUR ANSWER : ?
If the two strings are identical, then strcmp() function returns 1 true -1 0 None of these TRUE ANSWER : ? YOUR ANSWER : ?
In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right II and III II and IV III and IV I and III I and II TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following program?#include<stdio.h>#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 4 64 16 TRUE ANSWER : ? YOUR ANSWER : ?
What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 6 9 5 10 11 TRUE ANSWER : ? YOUR ANSWER : ?