Computer Science, asked by ahmadwajid290, 2 months ago

Q7.) Write a program to print the sum of digits of a three digit number.​

Answers

Answered by nitinrawat9th
0

Answer:

Sum of digits program in C

C program to sum each digit: We can write the sum of digits program in c language by the help of loop and mathematical operation only.

Sum of digits algorithm

To get sum of each digits by c program, use the following algorithm:

Step 1: Get number by user

Step 2: Get the modulus/remainder of the number

Step 3: sum the remainder of the number

Step 4: Divide the number by 10

Step 5: Repeat the step 2 while number is greater than 0.

Let's see the sum of digits program in C.

#include<stdio.h>

int main()

{

int n,sum=0,m;

printf("Enter a number:");

scanf("%d",&n);

while(n>0)

{

m=n%10;

sum=sum+m;

n=n/10;

}

printf("Sum is=%d",sum);

return 0;

}

Similar questions