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

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

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