how to add numbers in C code example

Example 1: 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

Example 2: how to get add to number C

int num1=5, num2=10,sum;
 sum=num1+num2;
 printf("%d is the sum",sum);

Tags:

Cpp Example