Guess the output??
#include stdio.h
int main() {
int a = 5, b = 3;
int t = a;
a = b;
b = t;
printf("%d %d", a, b);
return 0;
}


Posted on by