Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int sum(int i) {
- if(i == 11) {
- return 0;
- }
- return sum(i + 1) + i;
- }
- int main() {
- printf("%d\n", sum(1));
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement