An open API service indexing awesome lists of open source software.

https://github.com/vindecodex/cpp

Learning c++ as a beginner
https://github.com/vindecodex/cpp

cmake cplusplus cpp notes

Last synced: about 1 year ago
JSON representation

Learning c++ as a beginner

Awesome Lists containing this project

README

          

### 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](https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw)

[TutorialsPoint](https://www.tutorialspoint.com/cplusplus/index.htm)