Consider the following C function void swap (int a, int b) { int temp; temp =a; a =b; b =temp; } In the order to exchange the values of two variables x and y .
Reveal answer
Fill a bubble to check yourself
Consider the following C function void swap (int a, int b) { int temp; temp =a; a =b; b =temp; } In the order to exchange the values of two variables x and y .