1.
#include [C++ Reference]
The spiffy new C++ #include commands don't need to map directly to filenames, at least not for the standard libraries. That's why you can get away with ...
2.
C++ Data Types [C++ Reference]
char, signed char. unsigned char. short, short int, signed short int ... End with the data type ( double or char above). Go right when you can, ...
3.
rand [C++ Reference]
The function rand() returns a pseudorandom integer between zero and RAND_MAX. An example: srand( time(NULL) ); for( i = 0; i < 10; i++ ) printf( "Random ...
4.
C++ Data Types [C++ Reference]
Several of these types can be modified using the keywords signed, unsigned, short, and long. When one of these type modifiers is used by itself, a data type ...
5.
C++ Vectors [C++ Reference]
empty, true if the vector has no elements. end, returns an iterator just past the last element of a vector. erase, removes elements from a vector ...
6.
C++ Multimaps [C++ Reference]
C++ Multimaps are like maps, in that they are sorted associative containers, but differ from maps in that they allow duplicate keys. ...
7.
#include [C++ Reference]
The spiffy new C++ #include commands don't need to map directly to filenames, at least not for the standard libraries. That's why you can get away with ...
8.
getline [C++ Reference]
The C++ string header defines the global function getline() to read strings from an ... For example, the following code reads a line of text from stdin and ...
9.
fgets [C++ Reference]
The function fgets() reads up to num - 1 characters from the given file stream and dumps them into str. The string that fgets() produces is always NULL- ...
10.
C++ Reference [C++ Reference]
C++ Exceptions. C++ Standard Template Library (STL). Overview · Iterators · C++ Algorithms · C++ Vectors · C++ Double-Ended Queues ...