#include <stdio.h>

int main() {
    int x,y,z,big;
    printf("\nenter any three no to check greater no:");
    scanf("%d%d%d",&x,&y,&z);
    x>y ? (x>z ? (big=x) : (big=z) ) : ( y>z ? (big=y) : (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: