The sum of is the total of everything being summed; the sum total. Thus the sum of a, b and c is therefore a + b + c.
Chat with our AI personalities
Sum = Sum + first number Sum = Sum + second number Sum = Sum + third number Average = 1/3 x Sum
to print the sum of first ten numbers:- void main() {int i,sum; sum=0; while(i<=10) sum=sum+i; i=i+1; } printf("The sum is : %d",sum); }
The following will sum all integers from 1-100. Adjust according to your needs.int sum = 0;for (int i = 1; i
int i, sum; /* example using while */ sum = 0; i = 1; while (i <= 100) { sum += i; ++i; } /* example using for */ sum = 0; for (i = 1; i <= 100; ++i) sum += i;
The sum in programming is the same as the sum in arithmetic. The sum of two or more operands is the sum total of those operands when they are added together. E.g., the sum of 6 and 4 is 10. That is, 6 + 4 = 10.