//sum of integers int the list #include int main(){ float arr[10],loop,sum; printf("Enter The Elements :"); for(loop=0;loop<10;loop++) scanf("%f",&arr[loop]); //___________________________________________________________this part is for your puts("\n Elements are \n"); for(loop=0;loop<10;loop++) puts(arr[loop]); //__________________________________________________ for(loop=0;loop<10;loop++) sum=sum+arr[loop]; printf("Sum is %f",sum); }