0
votes
What are the differences between Visual C++ 6.0 and Visual C++ 2008?
Visual C++ 2008 is much more standards compliant (Visual Studio 6 doesn't support the C++ standard set in 1998).
…
2
votes
How can I get rid of the warning with rand()? (C++)
To get rid of the warning you should use a static cast to an unsigned integer.
srand(static_cast<unsigned int>(time(0)));
On a related note, the results of r …
6
votes
What is the STL?
The STL is the Standard Template Library. It is a subset of the C++ standard library.
The STL provides generic implementations of useful algorithms and containers.
The containers p …
1
vote
How to Disable Windows TCP/IP Stack in VC++ [Programmatically]
Disabling TCP/IP is not that uncommon. We tend to disable it on our host machine so that the VMs can have uninterrupted use of the IP stack.
You can disable it manually by going to the con …
0
votes
How can I schedule some code to run after all ‘_atexit()’ functions are completed
atexit is processed by the C/C++ runtime (CRT). It runs after main() has already returned. Probably the best way to do this is to replace the standard CRT with your own.
On Windows tlibc …
