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);} 3 7 8 3 3 8 None of these 7 3 3 7 8 3 3 8 None of these 7 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 None of These Compiler Error 50 10 None of These Compiler Error 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff3 fff1 fff2 fff4 fff0 fff3 fff1 fff2 fff4 fff0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Local variables Members of a structure Arithmetic expressions Both of the above R-values Local variables Members of a structure Arithmetic expressions Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 Garbage Value 1 2 0 3 Garbage Value 1 2 0 ANSWER DOWNLOAD EXAMIANS APP