l need helpThis site has an API reference that clearly spells out what each of these functions do. http://www....
srand() frequencyI would urge you to consider using <random> if you are using modern C++, or boost::random if you are...
How do I replace an if with a bool?You're complaining about gibberish code on this forum? That's pretty much all I ever see.
How do I replace an if with a bool?[code]p=int(p < 10);[/code] That will perform an explicit conversion of a bool to an int. You can ...
Ascending order HELP.If you can use them, the algorithms std::sort() and std::stable_partition() will do what you want. ...