Answers for "program to find sum of digits of a number in c"

C
0

adding digits of a number in c

//program to find the sum of digits:

#include<stdio.h>
int main()
{
  int num,sum=0,r,temp;
  printf("Enter the number:n ");  //taking input from the user
  scanf("%d",&num);
  
  temp=num;           //assigning num to temporary variable
  
  while(temp!=0)
  {
    r=temp%10;
    sum=sum+r;
    temp=temp/10;
  }
  printf("nGiven number = %d",num);
  printf("nSum of the digits = %d",sum);
}

//code By dungriyal
Posted by: Guest on October-10-2020
0

c program to find the sum of given number

# include<stdio.h>
int main
{
int number;
int sum=0;
int remainder;
printf("enter a numbern");
scanf("%d",&number);
for(;number!=0;)
{
remainder=number%10;
sum=sum+remainder;
number=number/10;
}
printf("sum of digits=%d",sum);
}
Posted by: Guest on June-22-2020
0

sum of individual digits in c using function

#include <stdio.h>

int individualSum(num);

void main ()
{
    int num, ret;

    ret = individualSum(num);
    printf("nThe sum of individual digit is %dn", ret);
}

int individualSum(num)
{
    int i, rem, sum = 0;
    printf("Enter the number: ");
    scanf("%d",&num);

    while(num!=0)
    {
        rem = num % 10;
        num = num /10;
        sum = sum + rem;
    }
  	
  return sum;
}
Posted by: Guest on June-23-2021
-1

how to count digits and sum of digits in C

Enter the number
300
Given number = 300
Sum of the digits 300 = 3
 
 
Enter the number
16789
Given number = 16789
Sum of the digits 16789 = 31
Posted by: Guest on December-17-2019

Code answers related to "program to find sum of digits of a number in c"

Code answers related to "C"

Browse Popular Code Answers by Language