https://github.com/megaconfidence/learn-cpp
Some stuff I made while learning C++
https://github.com/megaconfidence/learn-cpp
Last synced: 9 months ago
JSON representation
Some stuff I made while learning C++
- Host: GitHub
- URL: https://github.com/megaconfidence/learn-cpp
- Owner: megaconfidence
- Created: 2019-08-22T19:13:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T23:16:01.000Z (over 6 years ago)
- Last Synced: 2025-02-08T22:46:30.261Z (11 months ago)
- Language: C++
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Set up Dev Env
## To link a flie at link time to The Standard Library on linux use
```gcc test.cpp -lstdc++ -o test.o```
## Then run the output of the file
```./test.o```
## You can also chain the commands
```gcc test.cpp -lstdc++ -o test.o && ./test.o```
## Install vscode extension for c++
1. C/C++
2. Code Runner
3. C++ Intellisense