C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 53 65 65 65 Syntax error 065 65 053 65 53 65 65 65 Syntax error 065 65 053 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Size of the array need not be specified, when It is a formal parameter It is a declaratrion All of these Initialization is a part of definition It is a formal parameter It is a declaratrion All of these Initialization is a part of definition ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Arithmetic operators Relational operators Equality operators Logical operators Arithmetic operators Relational operators Equality operators Logical operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} None of these 7 3 3 7 8 3 3 8 None of these 7 3 3 7 8 3 3 8 ANSWER DOWNLOAD EXAMIANS APP
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 What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning None of these Good Morning M Good Morning None of these Good Morning M ANSWER DOWNLOAD EXAMIANS APP