3.Wap to find the greatest of three numbers using mathematical functions.
Answers
Answered by
1
Answer:
there u go !! mark as brainliest as ur choice ! took allot tjme
Attachments:
![](https://hi-static.z-dn.net/files/d58/c3950afedd6068eb0ab09c1867c9a019.jpg)
Answered by
0
Explanation:
Find the greatest of three numbers using if-else-if statements
#include <stdio.h>
#include <stdlib.h>
biggestNumber(int,int,int);//function prototype.
int biggestNumber(int a,int b,int c){//function definition with parameter.
int biggest;
if(a>b && a>c)
biggest=a;
else if(b>a && b>c)
Similar questions
Political Science,
4 months ago
Social Sciences,
4 months ago
Social Sciences,
4 months ago
Geography,
9 months ago
Biology,
9 months ago
Math,
1 year ago