Skip to content

valentinsimeonov/cpp_module00

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published