Manipulators | Description |
---|
endl | It feeds the whole line and then points the cursor to the beginning of the next line. '\n' is used instead of endl for the same purpose. |
setw | It sets the minimum field width on output. |
setfill | It is used after setw manipulator. It is used for filling the fields. |
setprecision | It is used to set the precision for a data after the decimal point. |
Storage Class | Description |
---|
auto | It is the default storage class for all local variables. |
register | This storage class is used to define local variables that should be stored in a register instead of RAM. |
static | This class is used for specifying the static variable. |
extern | This class is used to give a reference of a global variable which is available to all program files. |
mutable | This class allows a member of an object to override constness that means this class can be modified by a const member function. |