Answers for "c program to find total digits in a number"

C
2

print digits of a number in c

#include <stdio.h>

int main(){
    int num = 1024;

    while(num != 0){
        int digit = num % 10;
        num = num / 10;
        printf("%dn", digit);
    }
  
    return 0;
}
Posted by: Guest on July-08-2020
1

print digits of a number in c

#include <stdio.h>

int printDigits(int n){
  int digit;
  
  if(n < 10){//caso base
      digit = n;
      printf("%dn", digit);
    }else{
      digit = printDigits(n/10);
      digit = printDigits(n%10);
    }

    return digit;
}

int main(){
    int num = 3467678;

    printDigits(num);

    return 0;
}
Posted by: Guest on July-08-2020
-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 "c program to find total digits in a number"

Code answers related to "C"

Browse Popular Code Answers by Language