Starting Vocational Training From 1-May-2024 Get Detail


Write a program in C to display the n terms of odd natural number and their sum . 
Test Data 
Input number of terms : 10
Expected Output :
The odd numbers are :1 3 5 7 9 11 13 15 17 19 
The Sum of odd Natural Number upto 10 terms : 100 


???????


#include <stdio.h>
void main()
{
   int i,n,sum=0;

   printf("Input number of terms : ");
   scanf("%d",&n);
   printf(" The odd numbers are :");
   for(i=1;i<=n;i++)
   {
     printf("%d ",2*i-1);
     sum+=2*i-1;
   }
   printf(" The Sum of odd Natural Number upto %d terms : %d ",n,sum);
}