https://github.com/gabrielspassos/c-plus-plus-sandbox
:heavy_plus_sign: :heavy_plus_sign: C++ POCs and Tests repo
https://github.com/gabrielspassos/c-plus-plus-sandbox
cplusplus cpp
Last synced: about 1 year ago
JSON representation
:heavy_plus_sign: :heavy_plus_sign: C++ POCs and Tests repo
- Host: GitHub
- URL: https://github.com/gabrielspassos/c-plus-plus-sandbox
- Owner: gabrielSpassos
- Created: 2023-09-28T18:50:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-23T22:17:34.000Z (over 2 years ago)
- Last Synced: 2025-02-17T14:27:29.290Z (over 1 year ago)
- Topics: cplusplus, cpp
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Sandbox
Repo with poc and tests about C++
### Usage
* Create file
```
$file.cpp
```
* Compile
```shell
g++ $file.cpp
```
* Compile and Name the output
```shell
g++ -o $output $file.cpp
```
* Execute code
```shell
./a.out
```
### References
- https://www.w3schools.com/cpp/default.asp
- https://osasazamegbe.medium.com/showing-building-an-http-server-from-scratch-in-c-2da7c0db6cb7