Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} I love Examians None of These I hate Examians Error TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is not a correct variable type? double real float char int TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 0 1 10 14 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 10 0123456789 0 Syntax error Infinite loop TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Error Ok here None of These Forget it TRUE ANSWER : ? YOUR ANSWER : ?
A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as int (*p) (char *)[] None of these. int *p(char *)[] int(*p(char *))[] TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } et te ck ow TRUE ANSWER : ? YOUR ANSWER : ?
C Language developed at _________? Sun Microsystems in 1973 AT & T's Bell Laboratories of USA in 1970 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1972 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);} 0 5.600000 Complier error 5 5.600000 6 5.600000 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = -1, +i = -1 i = -1, +i = 1 None of These i = 1, +i = 1 TRUE ANSWER : ? YOUR ANSWER : ?