https://github.com/iguntur/cpp-playground
C/C++ playground
https://github.com/iguntur/cpp-playground
Last synced: 3 months ago
JSON representation
C/C++ playground
- Host: GitHub
- URL: https://github.com/iguntur/cpp-playground
- Owner: iguntur
- License: mit
- Created: 2017-09-07T19:29:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-07T20:06:14.000Z (over 7 years ago)
- Last Synced: 2024-12-29T05:26:00.048Z (5 months ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C/C++ Playground
> Learning `C/C++`.
Learning and play C/C++. :smile:
## Requirements
- [CMake](https://cmake.org)
## Start
### Using this repository
Simple clone this repository.
```
$ git clone https://github.com/iguntur/cpp-playground.git
```### Build
We need to run `cmake` command to generate `Makefile` and then running `make` command.
```
$ cd cpp-playground
$ cmake .
$ make
```All `binaries` code should be generated on the `build` directory.
```
$ ./build/basic/string
$ Hello World.
```## License
MIT © [Guntur Poetra](https://github.com/iguntur)