C_CPP/01_ENV/func1.c

19 lines
187 B
C
Raw Normal View History

2018-03-12 15:20:16 +01:00
#define func1
2018-03-12 21:11:29 +01:00
int func3(int x) {
2018-03-12 15:20:16 +01:00
return x + 10;
}
2018-03-12 21:11:29 +01:00
int func2(int x) {
return x - 10;
}
int recurse1(int count) {
return func1(count - 1);
}
int recurse2(int x) {
}