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

https://github.com/studyresearchprojects/learn-c

📚 Examples, Exercises and Applications using the C programming language for educational purposes
https://github.com/studyresearchprojects/learn-c

c

Last synced: 8 months ago
JSON representation

📚 Examples, Exercises and Applications using the C programming language for educational purposes

Awesome Lists containing this project

README

          





learn-c



📚 Examples, Exercises and Applications using the C programming
language for educational purposes


## Getting Started
This repository makes use of CUnit to run tests for the exercises.

You must install CUnit in your environment in order to check for
exercises validations.

```shell
# install with apt-get
sudo apt-get install libcunit1 libcunit1-doc libcunit1-dev

# run the tests
gcc -o test test.c -lcunit
```