C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} -1 1 -1 1 1 1 -1 -1 complier error -1 1 -1 1 1 1 -1 -1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means p is one dimensional array of size 5, of pointers to integers. The same as int *p[ None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ None of these. p is a pointer to a 5 elements integer array. 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); 0 Infinite loop 0123456789 10 Syntax error 0 Infinite loop 0123456789 10 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} 0.000000 None of these. 10 Error 0.000000 None of these. 10 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Bjarne Stroustrup Dennis Ritchie Gosling James Dr. F. Codd Bjarne Stroustrup Dennis Ritchie Gosling James Dr. F. Codd ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() start() getch() main() printf() system() start() getch() main() printf() ANSWER DOWNLOAD EXAMIANS APP