void fun (int x, int *y) {x++; *y = x + x}
main (
int b = 4, a = 1;
fun (3, &b);
printf ("&%d %d", a, b);
out put = ?
Answers
Answered by
0
Answer:
thanks for giving free points
Similar questions