Program to print maximum digit of a number using while loop in C-language

#include<stdio.h>
int main()
{
    int a,n,max=0;
    printf("Enter the number\n");
    scanf("%d",&n);
    while(n!=0)
    {
        a=n%10;
        n=n/10;
        if(max<a)
        {
            max=a;
        }
    }
    printf("Greatest digit=%d",max);
   
}

OUTPUT
Enter the number
89058
Greatest digit=9

Comments

Popular posts

Creative pattern of butterfly in C-language

Variable & Datatype for C-programming

Errors in C-language

Introduction of C-language.

Language Translator of C-language

Syntax of C-language

Addition of two numbers in c language

Program to see all ASCII value using for loop in C-language

Program to find the sum of all n elements in an array in C-language