kiểm tra và sửa lỗi mã nguồn sau:
#include <stdio.h>
int main() '{'
int x, y;
x = 1;
y = 2;
printf("Gia tri truoc khi trao doi: \n a = %d, b = %d \n\n", a, b);
x = x + y; // ( 1 + 2 = 3)
y = x - y; // ( 3 - 2 = 1)
x = x - y; // ( 3 - 1 = 2)
printf("Gia tri sau khi trao doi: \n x = %d, y = %d \n", x, y);
'}'