state gov UP Police Programmer Grade 2 Mock Test Series Programming and Data Structure Programming in C
What is the output of following C language code?
int main() {
int x = 3, y = 5;
int s = y;
y = x;
x= y;
printf("%d %d", x, y);
return 0;
}
1
3 3
2
5 5
3
3 5
4
5 3