#include<stdio.h>
int main()
{
 int a,b,c;
    printf("enter the value of a");
    scanf("%d", &a);
    printf("enter the value of b");
    scanf("%d", &b);
    printf("enter the value of c");
    scanf("%d", &c);

    if(a>b)
    {
        if(a>c)
    printf("a is greatest integer");
    }

    if (b>c)
    {
        if(b>a)
    printf("b is greatest integer");
    }

    if(c>a)
    {
        if(c>b)
    printf("c is greatest integer");
    }

    return 0;
   
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: