SHOW:
|
|
- or go back to the newest paste.
1 | /* | |
2 | ||
3 | ||
4 | Write a recursive function that prints the numbers 1 to X back to 1. | |
5 | ||
6 | * The function must only have one int input. | |
7 | * The function must consist of a single function | |
8 | * The function must not use loops | |
9 | * The function must not use static or global variables. | |
10 | * The function must use printf("%i\n",..) to print the numbers | |
11 | ||
12 | ||
13 | */ | |
14 | ||
15 | #include <stdio.h> | |
16 | ||
17 | void f (int x); | |
18 | ||
19 | int main(int argsv, char ** argsc) | |
20 | { | |
21 | } | |
22 | ||
23 | void f(int x) | |
24 | { | |
25 | } |