Saved Bookmarks
| 1. |
2. which function is used to find the largest amongst given numbers |
|
Answer» printf ( "%d is the largest number." , B); if (C >= A && C >= B) Output: Enter the NUMBERS A, B and C: 2 8 1 8 is the largest number. |
|