Void f (int x, int y) {
while (x < y) {
printf("%d ", y - x);
x = x + 1;
y = y - 1;
}
} what is the output for f(2, 6)?
Answers
Answered by
0
Answer:
4 and 2
Explanation:
Similar questions