Count the digits of a given number in c language using recursion

Posted By: Matpal - January 25, 2012
#include<stdio.h>

int countDigits(num);
int main(){
  int num,count;

  printf("Enter a number: ");
  scanf("%d",&num);

  count = countDigits(num);

  printf("Total digits is:  %d",count);
  return 0;
}

int countDigits(int num){
    static int count=0;

     if(num!=0){
          count++;
         countDigits(num/10);
    }

    return count;
}

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.