#include <stdio.h>

int main() {
    int num1,num2,num3;
    printf ("Enter the number1:",num1);
    scanf ("%d\n",&num1);
    printf ("%d\n",num1);
    printf ("Enter the number2:",num2);
    scanf ("%d\n",&num2);
    printf ("%d\n",num2);
    printf ("Enter the number3:",num3);
    scanf ("%d\n",&num3);
    printf ("%d\n",num3);
    if ((num1>num2)&&(num1>num3))
        printf ("%d is bigger \n",num1);

    else if ((num2>num1)&&(num2>num3))
        printf ("%d is bigger \n",num2);
        
    else
    printf ("%d is bigger\n",num3);
    return 0;
}

Embed on website

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