#include <stdio.h>

int main() {
    int x,y,z,big;
    printf("\n enter three no to check greater no:\n");
    scanf("%d%d%d",&x,&y,&z);
    if(x>y)
    {
        if(x>z)
        big=x;
        else 
        big=z;
    }
    else
    {
        if(y>z)
        big=y;
        else
        big=z;
    }
    printf("\n Biggest no=%d",big);
    return 0;
}

Embed on website

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