Im making a wheel of fortune game in Dev C++ and I would just like to ask if its possible to create a simulation wheel that will get a random $, like litteraly a wheel, not just words. And if so, what library/function it needed to work. Thank you very much
C++ does provide a potentially-useful access point via the std::random_device class in <random>. Otherwise you'll have to look into some platform-specific TRNG/CSPRNG sources. (OpenSSL libraries provide an easy one.)
thank you sir, it helps me a lot, just one last question, how can you compile application of a multiple .cpp's, i saw it on tutorials, but can't somewhat connect it together. The codes for wheel of fortune got so many lines and got so confusing when editing it, so i thought i should separate functions by functions, but by no avail i cannot.