Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunurd/c-studies
Just a couple of c programming language studies.
https://github.com/brunurd/c-studies
Last synced: 13 days ago
JSON representation
Just a couple of c programming language studies.
- Host: GitHub
- URL: https://github.com/brunurd/c-studies
- Owner: brunurd
- Created: 2021-10-16T03:29:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T22:10:42.000Z (about 3 years ago)
- Last Synced: 2024-10-28T06:31:06.002Z (2 months ago)
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Studies
Just a couple of c programming language studies.## Prerequesites
- cmake
- make
- gcc## Usage
There is a `Makefile` in the project root with all the basic commands of the project.### 1. Build
To build just call:
```bash
make build
```### 2. Run
To run the application call:
```bash
make run
```### 3. Test
To run all the tests call:
```bash
make test
```