Computer Science, asked by rishuraina05, 5 months ago

WAP to find largest number among three inputted numbers.​

Answers

Answered by avi86579
3

Answer:

Below is the C program to find the largest among the three numbers: Example 1: Using only if statements to find the largest number. printf ( "%d is the largest number." , B); if (C >= A && C >= B)

Similar questions