#include <stdio.h>
int main()
{
    int x, y, z;

   
    printf("Enter three numbers: ");
    scanf("%d %d %d", &x, &y, &z);

   
     if (x >= y)
    {
        if(x >= z)
            printf("%d is the largest of all the numbers.", x);
        else
            printf("%d is the largest of all the numbers", z);
    }
    else
    {
        if(y >= z)
            printf("%d is the largest of all the numbers ", y);
        else
            printf("%d is the largest of all the numbers ",z);
    }

    return 0;
}



OUTPUT :

Enter three numbers: 21
12
43
43 is the largest of all the numbers

Enter three numbers: 44
54
12
54 is the largest of all the numbers


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-


For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/