C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 4 5 Error 6 4 5 Error 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These Some Address will be printed Hello H None of These Some Address will be printed Hello H ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hj grjeodt hi friends None of These ij!gsjfoet hj grjeodt hi friends None of These ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} A c 65 Error A c 65 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 12 7 11 6 5 6 6 7 6 6 12 7 11 6 5 6 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 50, 13, 11, 13 13, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP