Computer Science, asked by shruthi94, 8 months ago


3.Wap to find the greatest of three numbers using mathematical functions.

Answers

Answered by vlixonyoutube
1

Answer:

there u go !! mark as brainliest as ur choice ! took allot tjme

Attachments:
Answered by chrisildaisaac73
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