Computer Science, asked by gnanadeepikachowdary, 5 months ago

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 priyanshupriyal2008
1

Answer:

..........................

Answered by Anonymous
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
Math, 10 months ago