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++
- Host: GitHub
- URL: https://github.com/daiki48/fizzbuzz-cpp
- Owner: Daiki48
- Created: 2022-09-06T14:08:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-06T14:20:41.000Z (over 2 years ago)
- Last Synced: 2025-02-06T22:32:10.308Z (4 months ago)
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.