• + 0 comments
    int max_of_four(int a, int b, int c, int d) {
        int largest = std::max({a, b, c, d});
        return largest;
    }