0
C Module 3 Quiz
Hi guys, I need little help here, I'm just starting my c course here, I'm stuck, I tried with return 0 in the blank, or return n, or false, all of them are wrong, what's the correct answer? Fill in the blanks to define a recursive print function that prints numbers from n to 0. void print(int n) { if (n < 0) (blank); printf("%d", n); print(n - 1); }
1 Answer
+ 4
return