#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; }
Filled Under
C
Count the digits of a given number in c language using recursion
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.