Recent content by sick
-
S
How Does Recursion Work in C for Calculating Factorials?
thanks jeff ummm another question... umm when the program skips the execution in up_and_down(n+1); i know why the LEVEL 4 is output...so it return to the 3 value... the next line is this up_and_down(3); am i right? so it calls again the up_and_down(); function...my question is when...- sick
- Post #12
- Forum: Programming and Computer Science
-
S
How Does Recursion Work in C for Calculating Factorials?
ummm another help in recursion...pllssss faust i need your explanation... --------------------------------------------------- #include <stdio.h> void up_and_down(int); int main(void) { up_and_down(1); return 0; } void up_and_down(int n) { printf("Level %d: n location %p\n", n, &n)...- sick
- Post #10
- Forum: Programming and Computer Science