Program will then find the largest of three numbers using nested if-else statements.
User is prompted to enter three numbers.
Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed.
If user enters 21, 33, and 5, the output should be as follows:
You entered: 21, 33 and 5. The largest number is 33.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between procedure oriented and object oriented progaming language
Why array is used in c?
What is the difference between macros and inline functions?
What does the message "automatic aggregate intialization is an ansi feature" mean?
what is an inline fuction??
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Can a pointer be null?
Is main a keyword in c?
What is the difference between functions getch() and getche()?
What is difference between array and pointer in c?
Why we write conio h in c?
What is the use of typedef in structure in c?