Computer Science, asked by itsdummy1120, 7 months ago

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 dsaha201171
0

Answer:

4 and 2

Explanation:

Similar questions