#include<stdio.h>
#include<conio.h>
void main()
{
int a[30],i,s=0;
printf("Enter 30 Values");
for(i=0;i<=29;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<30;i++)
{
s=s+a[i];
}
printf("Sum of all Elements=%d",s);
getch();
}
Copyright © 2010 C Programs
Icons & Wordpress Theme by N.Design | Blogger Templates by Blog and Web
0 comments: (+add yours?)
Post a Comment