What will be the output of the following code?#includestdio.hint main( ){int a=3,b=5;int t=a;a=b;b=t;printf ("%d %d",a,b);return 0;}
#includestdio.hint main(){int y=55;const int x++=y;printf("%d\n", x);return 0;}
What is the output of the following code?#includestdio.hint _a_1234(int n){return n++;}int main(){int n=_a_1234(6);printf("%d",--n);return 0;}