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

https://github.com/daiki48/fizzbuzz-cpp

FizzBuzz with C++
https://github.com/daiki48/fizzbuzz-cpp

Last synced: 2 months ago
JSON representation

FizzBuzz with C++

Awesome Lists containing this project

README

        

# FizzBuzz tutorial with C++

# Usage

## c

```shell
$ gcc ./src-c/main.c -o main
```

```shell
$ ./src-c/main
```

## cpp

```shell
$ g++ -o ./src-cpp/main ./src-cpp/main.cpp
```

```shell
$ ./src-cpp/main
```

Since it has already been compiled.