What will be the output of the following program?
#includestdio.h

main()
{
int i = 13, j = 60;
i ^= j;
j ^= i;
i ^= j;
printf("%d %d", i, j);
}

Posted on by