Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

History

History
13 lines (11 loc) 路 307 Bytes

max.md

File metadata and controls

13 lines (11 loc) 路 307 Bytes

max

Description : Compares two values, returning the greatest.

Example:

    int a = 7, b = 3;
    auto greatest = std::max(a, b);
    // prints 7
    std::cout << greatest << " "; 

See Sample code Run Code