First page Back Continue Last page Graphics
STL General Concepts
Namespace std
(covered before)
- std::cout << std::hex << 127 << std::endl;
- or
- using std::cout;
- using std::endl;
- cout << std::hex << 127 << endl;
- or
- using namespace std;
- cout << hex << 127 << endl;
-