Computer Science, asked by sharvandu, 4 months ago

write a program to find the biggest of three numbers using if-else​

Answers

Answered by Anonymous
18

Answer:

The program output is also shown below.

  • * C program to find the biggest of three numbers.
  • int num1, num2, num3;
  • printf("Enter the values of num1, num2 and num3\n");
  • scanf("%d %d %d", &num1, &num2, &num3);
  • printf("num1 = %d\tnum2 = %d\tnum3 = %d\n", num1, num2, num3);
  • if (num1 > num2)
  • if (num1 > num3)
Answered by namratakargutkar78
1

Explanation:

hhhhhhhhh

if else

lol

I need points......XD

Similar questions