What will the output after execution of the following statements?main(){printf ("\\n ab");printf ("\\b si");printf ("\\r ha");}
What is the output of the following program? #include<stdio.h>int main(){char c=125;c=c+10;printf("%d",c);return 0;}
#include<stdio.h>int main(){int a=500,b=100,c;if(!a>=400)b=300;c=200;printf("b=%d c=%d\n",b,c);return 0;}
#include ‹stdio.h>
#define VAL 3 * (2 + 6)What is the outputvoid solve(){int a = 10 + VAL;printf("%d", a);int main(){solve ();return 0;}