English, asked by Anonymous, 1 month ago

write a program to find greatest of 4 numbers using void main method pls give the correct answer​

Answers

Answered by itzvarshini
4

Answer:

main()

{

int a,b,c,d;

clrscr();

printf("Enter the Four Numbers :");

scanf("%d %d %d %d",&a,&b,&c,&d);

if(a>b)

{

if(a>c)

{

if(a>d)

{

printf("%d is big",a);

}

else

{

printf("%d is big",d);

}

}

}

else if(b>c)

{

if(b>d)

{

printf("%d is big",b);

}

else

{

printf("%d is big",d);

}

}

else if(c>d)

{

printf("%d is big",c);

}

else

{

printf("%d is big",d);

}

getch();

}

Similar questions