Page 1 of 1

Consider the following function: void fun_with_recursion(int x) { printf("%i\n", x); fun_with_recursion(x + 1); } What w

Posted: Sat May 14, 2022 3:50 pm
by answerhappygod
Consider the following function:
void fun_with_recursion(int x) {
printf("%i\n", x);
fun_with_recursion(x + 1); }
What will happen when this function is called by passing it the
value 0?