CPP00
Main topics
Namespaces, classes, member functions, stdio streams,
initialization lists, static, const, and some other basic
stuffNamespaces
#include <iostream>
using namespace std;
// this line sets the namespace to std
// this means that we don't have to write std:: before
// using any of the functions / variables in the iostream header
// this code is an example of using a namespace globally
int main(void)
{
cout << "Hello World!" << endl;
return (0);
}Constructor functions & initialization lists
Classes
Member functions
Last updated