0 min LN
1 void f (int x, int y) {
2 while (x < y) {
3
printf("%d ", y - x);
x = x + 1;
5
y = y - 1;
6 }
7 }
What is the output for f(-1, 4)?
Answers
Answered by
0
Answer:
I don't understand sorry
Similar questions