What is the output of the following code?
#include stdio.h
int main()
{
int a = 2, b = 7;
int t = a;
a = b;
b = t;
printf("%d %d", a, b);
return 0;
}

Posted on by