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

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation