Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 623 Bytes

File metadata and controls

32 lines (23 loc) · 623 Bytes

C++ Learning

A repository for learning C++ from scratch and tracking progress with Git.

Learning style

  • Write code by hand
  • Compile and run every program
  • Read compiler errors
  • Modify the examples
  • Track progress with Git

Lessons

No. Topic Status
01 Hello C++ In progress
02 Variables Not started
03 User input Not started
04 Conditions Not started
05 Loops Not started
06 Functions Not started
07 Arrays Not started
08 Classes Not started

Compile

g++ 01_hello/main.cpp -o hello

Run

.\hello.exe