This programs enhances problem solving skills using c for entry level students
You will be given a number 'N'. Your task is to calculate the sum of first N natural numbers(1 to N)
Example
input:
4
output:
10
You will be given a positive integer 'n'. Your task is to print the first 'n' terms of the fibonacci series.
Example
input:
4
output:
0 1 1 2
Check whether an integer is odd or even
Example
input:
5
output:
Odd
Your task here is to print half pyramid of stars.
Example
input:
3
output:
*
**
***