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

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

OUTPUT
Enter the number
874805
Lowest digit=0

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language