Write the program which counts the total digits in given number. Program will ask user to enter any number and display the total digits in the given number. code example
Example: c how many digits has a number
digits = (number == 0) ? 1 : (log10(number) + 1);
//or
while (number > 0)
{
number /= 10;
digits++;
}
//see: https://ideone.com/P1h8Ne