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(3,6)?
and can you please explain?
Answers
Answered by
2
Answer:
but your question is not in the correct form. please first correct it.
Similar questions