C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..4 4..2 2..2 4..4 2..4 4..2 2..2 4..4 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; 1 0 2 3 1 0 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on the first column need not start on a new line has # as the first character comes before the first executable statement need not start on the first column need not start on a new line has # as the first character comes before the first executable statement ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 5 4 None of these 6 7 5 4 None of these 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} None of these. Error Equal Unequal None of these. Error Equal Unequal ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 5 None of these 9 Error 6 5 None of these 9 Error 6 ANSWER DOWNLOAD EXAMIANS APP