Identify the output of below code snippet:
#include <stdio.h>
int main(void)
{
int x = 6, y = 9;
x^= y^= x;
printf("%d %d", x, y);
return 0;
}
1) 12 21
2) none of the option
3)69
4)9 15
Answers
Answered by
1
Answer:
..........................
Answered by
6
Explanation:
Identify the output of below code snippet:
#include <stdio.h>
int main(void)
{
int x = 6, y = 9;
x^= y^= x;
printf("%d %d", x, y);
return 0;
9 15
Similar questions