You are viewing a single comment's thread. Return to all comments →
Less Code:
int max_of_four(int a, int b, int c, int d) { if (b > a) a = b; if (d > c) c = d; return (a > c) ? a : c; }
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 →
Less Code: