https://github.com/parthibann/cello
to learn github actions
https://github.com/parthibann/cello
Last synced: 21 days ago
JSON representation
to learn github actions
- Host: GitHub
- URL: https://github.com/parthibann/cello
- Owner: parthibann
- License: mit
- Created: 2025-02-12T05:19:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-12T05:37:53.000Z (about 1 year ago)
- Last Synced: 2025-02-12T06:43:53.536Z (about 1 year ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cello
C program to print **Hello World**
## Manual Building
Invoke the C compiler from the GNU Compiler Collection (GCC) to compile the source code into binary:
```bash
gcc -g -o cello cello.c
```
Execute the resulting output binary cello.
```bash
$ ./cello
Hello World
```
Credits :
[RPM Packaging Guide](https://rpm-packaging-guide.github.io)