C++: Random Numbers

Channel:
Subscribers:
2,650
Published on ● Video Link: https://www.youtube.com/watch?v=lA8YQMXfY5w



Duration: 51:23
217 views
8


Making a good random number is hard, and has real life consequences in espionage, gambling, and gaming. In C++ we have the easy and bad way of making random numbers (srand/rand) and the complicated and good way of making random numbers (include random and then copy/paste from cppreference).