vindecodex / cpp

Learning c++ as a beginner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My Code when learning C++

My very first exploration with c++

Compilation

g++ *.cpp -o executable_name >> use this for compiling multiple source files and linking them.

g++ *.cpp -o executable_name -c >> add with -c if you don't want to link the source files.

Suggestion

It is better to use CMake instead for best practice.

Sources

The Cherno

TutorialsPoint

About

Learning c++ as a beginner

License:MIT License


Languages

Language:C++ 93.8%Language:Makefile 5.0%Language:C 1.2%