Computer Science, asked by jveerunaik63, 11 months ago

write a C program for three numbers to find maximum and minimum​

Answers

Answered by Anonymous
4

Answer:

Without using function

1. #include <stdio.h>

2. int main(void) {

3. int a,b,c;

4. printf("Enter three number\n");

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

6. //finding maximum number.

7. if (a >= b ) {

8. if (a >= c)

plz follow me and mark as brainliest

Similar questions