6 + c
Chat with our AI personalities
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.
int sum_digits (int num) { int sum; sum =0; while (num) { sum += num % 10; num /= 10; } return sum; } Example usage: int main (void) { int i; printf ("Input a 6-digit number: "); scanf ("%6d", &i); printf ("The sum of the digits in %d is: %d\n", i, sum_digits (i)); return 0; }
You add 2 fractions with the same denominator [c], so the sum is the sum of the numerators divided by the denominator: a/c + b/c = (a+b)/c
/*use "c-free" compiler*/ #include <stdio.h> main() { int a,b,c; printf("enter the value of a & b"); scanf("%d%d",&a,&b); c=a+b; printf("sum of the two numbers is a+b- %d",c); getch(); }
10 for t = 1 to 50 20 input a 30 c = c + a 40 next t 50 print c