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