Gammal Tech
About
Courses
C Programming
Algorithms
Entrepreneurship
Company Security
SIGN IN
SIGN UP
Sign Out
My Account
Recursion Part 3
void fun(int x){ if(x<=0){ return; fun(x-1); printf("%d ",x);} fun(x); } Syntax Error --Infinite loop Correct
Select one...
void fun(int x){ if(x<=0) return; fun(x-1); printf("%d ,x); } --Syntax Error Infinite loop Correct
Select one...
int fun(int x){ if(x<=0) return; fun(x-1); printf("%d ",x); } --Syntax Error Infinite loop Correct
Select one...
void fun(int x){ if(x<=0) return; x++; fun(x-1); printf("%d ",x); } Syntax Error --Infinite loop Correct
Select one...
void fun(int x){ if(x<=0) return; fun(x-1); printf("%d ",x); } Syntax Error Infinite loop --Correct
Select one...
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Submit
Back to Course