You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/C program to Increase 1 to ...

19 lines
431 B
C

/*
* C program to Increase 1 to all of the given Integer Digit
*/
#include <stdio.h>
int main()
{
int number, sum = 0, remainder, count;
printf("Enter a number: ");
scanf("%d", &number);
while (number)
{
remainder = number % 10;
sum = sum + (remainder + 1);
number /= 10;
}
printf("increasing 1 to all digits: %d", sum);
return 0;
}