✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void ProSum(int &a, int &b)
{
a=b;
b=a;
}
void main()
{
int x=4;
int y=6;
ProSum(x, y);
printf(“%d %d”,x ,y);
}
Kết quả in ra màn hình khi thực hiện chương trình trên?