User profile: PanGalactic

User info
User name:PanGalactic
Location:Colorado, US
Statistical data
Gender:Male
Occupation:Director
Skills:C
C++
Perl
Javascript
Python
Linux
Distributed Systems
Big Data
History
Joined:
Number of posts:1658
Latest posts:

l need help
This site has an API reference that clearly spells out what each of these functions do. http://www....

srand() frequency
I 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. ...