What will be the output for the following code ?
#includestdio.h
int main()
{
int a=3,b=8;
int t=a;
a = b;
b = t;
printf("%d %d",a,b);
return 0;
}

Posted on by