You are viewing a single comment's thread. Return to all comments →
int max_of_four(int a ,int b, int c, int d) {
if (a>b && a>c && a>d) { return a;
}
return max_of_four(b,c,d,a);
int main() { int a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d); int x=max_of_four(a,b,c,d); printf("%d",x); return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Functions in C
You are viewing a single comment's thread. Return to all comments →
include
int max_of_four(int a ,int b, int c, int d) {
}
}
int main() { int a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d); int x=max_of_four(a,b,c,d); printf("%d",x);
return 0; }