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

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

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)