C++ is a general-purpose Programming Language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes" (source: Wikipedia).
Nine Introductory C++ Modules to Object-Oriented Programming. This will be the Starting Point of the C++ Journey.
Research Compilling is done with g++ instead of gcc Flags: g++ -Wall -Wextra -Wno-unused -Werror
Good Tutorials from Intra:
- Namespaces
- stdio streams
- Class and instance
- Member attributes and member functi
header Standard Input / Output Streams Library Header that defines the standard input/output stream objects:
C++98 Including this header may automatically include other headers, such as , , , and/or .
Note that the iostream class is mainly declared in header .
Objects
Narrow characters (char) cin Standard input stream (object) cout Standard output stream (object) cerr Standard output stream for errors (object) clog Standard output stream for logging (object)
Wide characters (wchar_t) wcin Standard input stream (wide) (object) wcout Standard output stream (wide) (object) wcerr Standard output stream for errors (wide-oriented) (object) wclog Standard output stream for logging (wide) (object)
For the Compare Function