Search This Blog

Wednesday 16 November 2016

C Program to Count Number of Digits in an Integer

#include <stdio.h>
int main()
{
    long long n;
    int count = 0;

    printf("Enter an integer: ");
    scanf("%lld", &n);

    while(n != 0)
    {
        // n = n/10
        n /= 10;
        ++count;
    }

    printf("Number of digits: %d", count);
}
Output
Enter an integer: 3452
Number of digits: 4

No comments:

Post a Comment