Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.51 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.51 KB

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:

  1. https://elearning.intra.42.fr/notions/nibbler/subnotions

  2. https://elearning.intra.42.fr/notions/piscine-c-d00-c-basics/subnotions Introduction

  • Namespaces
  • stdio streams
  • Class and instance
  • Member attributes and member functi
  1. https://cplusplus.com/reference/iostream/

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)

  1. https://www.geeksforgeeks.org/stdstringcompare-in-c/

For the Compare Function