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 complier error 1 -1 -1 1 -1 1 -1 1 complier error 1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 6 5 0 Compiler Error 7 6 5 0 Compiler Error 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Gosling Dennis Ritchie Bjarne Stroustrup James Dr. F. Codd Gosling Dennis Ritchie Bjarne Stroustrup James Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of A compiler An Editor None of these. An operating system A compiler An Editor None of these. An operating system ANSWER DOWNLOAD EXAMIANS APP
C Programming A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 4 4 8 5 5 2 5 5 2 4 5 2 4 4 8 5 5 2 5 5 2 4 5 ANSWER DOWNLOAD EXAMIANS APP