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

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++

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