C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} 0 complier error 1 no error no output 0 complier error 1 no error no output ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Hello None of these. H Some address will be printed Hello None of these. H Some address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 10 None of these 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Need not contain any function. Must contain at least one function. Needs input data. None of these Need not contain any function. Must contain at least one function. Needs input data. None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() None of these strnset() strrchr() strstr() strchr() None of these strnset() strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 13 Compilation error 12 11 14 13 Compilation error 12 11 14 ANSWER DOWNLOAD EXAMIANS APP