Namespaces
Variants
Actions

RAND_MAX

From cppreference.com
< cpp‎ | numeric‎ | random
 
C++
 
Numerics library
 
Pseudo-random number generation
Defined in header <cstdlib>
#define RAND_MAX /*implementation defined*/

Expands to an integer constant expression equal to the maximum value returned by the function std::rand. This value is implementation dependent. It's guaranteed that this value is at least 32767.

[edit] Example

#include <climits>
#include <cstdlib>
#include <ctime>
#include <iostream>
 
int main()
{
    / use current time as seed for random generator
    std::srand(std::time(NULL));
 
    std::cout << "RAND_MAX: " << RAND_MAX << '\n'
              << "INT_MAX: " << INT_MAX << '\n'
              << "Random value on [0,1]: "
              << static_cast<double>(std::rand() / RAND_MAX << '\n';
}

Possible output:

RAND_MAX: 2147483647
INT_MAX: 2147483647
Random value on [0,1]: 0.618608

[edit] See also

generates a pseudo-random number
(function) [edit]
seeds pseudo-random number generator
(function) [edit]
C documentation for RAND_MAX

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant