World Languages, asked by vasuchanti7378, 3 months ago

Write a program to find the program on nested if greatest of three numbers

Answers

Answered by biswajit0511
0

Answer:

if a>b,a>c

printf("greatest number is a")

if b>a,b>c

printf("greatest number is b")

else

printf("greatest number is c");

Similar questions