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

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

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)