View difference between Paste ID: gYTYHbqU and ws0Zyrjk
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
* The function must work in theory for any integer between 1 and 2,147,483,647
12
 
13
 
14
*/
15
16
#include <stdio.h>
17
 
18
void f (int x);
19
 
20
int main(int argsv, char ** argsc)
21
{
22
	printf("Testing an input value of 35");
23
	f(35);
24
	printf("Finished testing an input value of 35");
25
	return 0;
26
}
27
 
28
void f(int x)
29
{
30
}