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

Posted on by