Google+ COMPUTER TRICKS, TWEAKS AND TUTORIALS: Count the Digit in a Number

Count the Digit in a Number



Count the Digit in a Number

   #include<stdio.h>
   int main()
   {
     int num,count=0;
     printf("Enter a number: ");
     scanf("%d",&num);
     while(num)
     {
       num=num/10;
       count++;
     }
     printf("Total digits is:%d",count);
     return 0;
   }