source:
driver/tests/test4.c
@
3134
Last change on this file since 3134 was 2988, checked in by , 8 years ago | |
---|---|
File size: 131 bytes |
Line | |
---|---|
1 | char decr(char x) { |
2 | if (x == 0) { return 0; } |
3 | else {return decr(x-1); } |
4 | } |
5 | |
6 | int main() { |
7 | return decr(4); |
8 | } |
Note: See TracBrowser
for help on using the repository browser.