+ 2
I need someone to help me code.
C program to find maximum and minimum of 3, 4 and 8
5 Antworten
+ 10
No homeworks please
+ 5
See my code:
https://code.sololearn.com/c06VE2kB5nJV/?ref=app
+ 4
See my another try:
https://code.sololearn.com/c1OWYxl7rCEv/?ref=app
+ 4
You should give the OP a chance to make a first attempt.
+ 2
#include <stdio.h>
int max(int a,int b);
int main(){
int a,b,c;
a=3;
b=4;
c=8;
int todo;
todo=max(a,b);
a=max(todo,c);
printf("%d",a);
return 0;}
int max(int a,int b){
if(a>b)
return a;
else
return b;}