C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 5 Garbage Value Compiler Error 6 5 Garbage Value Compiler Error 6 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 complier error 1 -1 1 1 -1 -1 1 -1 complier error 1 -1 1 1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value result call by reference None of these. call by value call by value result call by reference None of these. call by value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff4 fff2 fff0 fff3 fff1 fff4 fff2 fff0 fff3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? / None of these + % * / None of these + % * 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 Compiler Error 50 None of These 10 Compiler Error 50 None of These ANSWER DOWNLOAD EXAMIANS APP