C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 1 14 0 10 1 14 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} Error 6 3 Garbage value Error 6 3 Garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming Pick the correct statements.I. The body of a function should have only one return statement.II. The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment. I and II III and IV I and III II and IV II and III I and II III and IV I and III II and IV II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Hello Some Address will be printed None of These H Hello Some Address will be printed None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Infinite loop 10 Syntax error 0123456789 0 Infinite loop 10 Syntax error 0123456789 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to infinite -10 to 0 Complier error -10 to -1 -10 to infinite -10 to 0 Complier error -10 to -1 ANSWER DOWNLOAD EXAMIANS APP