Pages

Friday, 9 January 2015

C Progarm To Print Sum of First 10 Even Numbers

/*  C Progarm To Print Sum of First 10 Even Numbers  */

For any query regarding c/c++ feel free to contact me on khimanichirag@gmail.com or comment below. I try my best to solve it.

 #include<stdio.h>  
 #include<conio.h>  
 void main()  
 {  
   int i=0,sum=0;  
   clrscr();  
   for(i=1;i<=20;i++)  
   {  
     if(i%2==0)  
       sum=sum+i;  
   }  
   printf("The sum of given series is: %d",sum);  
   getch();  
 }  

No comments:

Post a Comment