Answers for "write a c program to calculate sum of digits of a number"

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
1

sum of digits in c using for loop

#include <stdio.h>
int main()
{
   int n, sum = 0, r;

   printf("Enter a numbern");

   for (scanf("%d", &n); n != 0; n = n/10) {
      r = n % 10;
      sum = sum + r;
   }

   printf("Sum of digits of a number = %dn", sum);

   return 0;
}
Posted by: Guest on June-02-2021
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

Code answers related to "write a c program to calculate sum of digits of a number"

Code answers related to "C"

Browse Popular Code Answers by Language