I'm looking for the C++ standard APIs so what I know what to import if I wanted to use a certain feature such as Random number generator (in java we have to import java.util.Random)...???
However, I'm not sure whether VS2005 supports function as Eclipse for Java where it will help you choose and import a certain things based on the keywords that you declared. For example:
Code:
Random r = new Random();
In Eclipse, we can put our cursor to
Random keyword that we typed, and press CTRL+SHIFT+M to import java.util.Random from JDK. So we don't have to remember thousands of classes name lol...
P.S I'm new at VS2005 XD