Write a program to find the sum of the digits of the given number

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int n,num,sum=0;
  printf("\n Enter the number: ");
  scanf("%d",&n);
  num=n;
  while(num>0)
  {
       sum+=num%10;
       num/=10;
  }
  printf("\nThe sum of digits of %d is %d",n,sum);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code