logo

Crowdly

Browser

Add to Chrome

void ProSum(int &a, int &b) {  a=b;  b=a; } void main() {  int x=4;   int y=6;  ...

✅ 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?
0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on lms.rdi.edu.vn?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome