Showing posts with label WAP to sum of five elements of an array. Show all posts
Showing posts with label WAP to sum of five elements of an array. Show all posts

Tuesday, August 28, 2007

SUM OF ARRAY

WAP to sum of five elements of an array

void main ()

{

int no[5],i,sum;

clrscr ();

for (i=0;i<=4;i++)

{

printf ("Enter Element: ");

scanf ("%d",&no[i]);

}

sum=no[0]+no[1]+no[2]+no[3]+no[4];

printf ("\nSum of five Elements: %d",sum);

getch ();

}