int main(void) { int x = 3, y = 5; int z; z = x; x = y; y = z; printf("x = %d, y = %d\n", x, y); return 0; }