Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paramsiddharth/docker-calcsum-example
A simple programme that calculates the sum of two numbers.
https://github.com/paramsiddharth/docker-calcsum-example
Last synced: about 1 month ago
JSON representation
A simple programme that calculates the sum of two numbers.
- Host: GitHub
- URL: https://github.com/paramsiddharth/docker-calcsum-example
- Owner: paramsiddharth
- Created: 2020-11-27T02:42:11.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-01T12:52:02.000Z (about 4 years ago)
- Last Synced: 2024-05-22T20:22:43.875Z (7 months ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sum Calculator
A simple programme that calculates the sum of two numbers.## Compilation
``` bash
gcc sumcalc.c -o sumcalc
```## Executiom
``` bash
./sumcalc
```## Building Docker image
``` bash
docker build -t sumcalc .
```## Executing the image in a container
``` bash
docker run --rm -ti sumcalc
```## Made with ❤ by Param.