Computer Science, asked by saarthaksingh63, 3 months ago

write a program to find the greater of three numbers given by user​

Answers

Answered by DimpleBairwa
0

Answer:

the program output is also shown below

  • *C program to find the biggest three number
  • int nim1,num2,mum3;
  • printf(" enter the values of num1,num2,num3\n");
  • scanf("%d %d %d,&num1,num2,&num3);
  • primtf (num1 = %d\tnum2 = %d\tnum3 = %d\n",num1,num2,num3);
  • if (num1 > num2)
  • if (num1 > num3)
Attachments:
Similar questions