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
- Host: GitHub
- URL: https://github.com/vindecodex/cpp
- Owner: vindecodex
- License: mit
- Created: 2020-06-27T09:11:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-20T12:03:18.000Z (over 2 years ago)
- Last Synced: 2025-02-18T04:54:06.155Z (about 1 year ago)
- Topics: cmake, cplusplus, cpp, notes
- Language: C++
- Homepage:
- Size: 64.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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)