whats wrong with this function:
i get an "expected an expression" error
Code:
int max(int x, int y) {
return (if (x > y) { return x; } else { return y; });
}
Comment