C Module 3 Quiz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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); }

7th Dec 2020, 12:20 PM
Khasan Laudry
Khasan Laudry - avatar
1 Answer
+ 4
return
7th Dec 2020, 12:24 PM
Flash