✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdio.h>
int a, b, c, d;
void f (int a, int & c, int & d)
{
int b;
a = 5; c = 7; b = 9;
}
int main ()
{
a = 1; c = 1; b = 1;
f (b, a, c);
printf ( "% d |% d |% d", a, c, b);
return 0;
}
(C++)