Recursive_sequence_sum

Run Settings
LanguageC
Language Version
Run Command
#include <stdio.h> int Sum(int x){ if(x == 0) return 0; else return x + Sum(x-1); } int main(void) { printf("%d\n",Sum(3)); return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines