Write the recursive function int sum_natural(int x) which returns the summation 1+2+3+...+x. code example
Example: recursive function to find the sum of the nth term
void recurse() {
.....
recurse() //recursive call
.....
}
int main() {
.....
recurse(); //function call
.....
}