C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 14 1 0 10 14 1 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} complier error 1 no error no output 0 complier error 1 no error no output 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] arr{7} None of these arr[6] arr{6} arr[7] arr{7} None of these arr[6] arr{6} ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 2 3 1 0 2 3 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} Hello World Hello World WorldHello None of these Hello World Hello World WorldHello None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr Data file string stdin no such function in 'C'. stderr Data file string stdin no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP