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: 6 months ago
JSON representation
📚 Examples, Exercises and Applications using the C programming language for educational purposes
- Host: GitHub
- URL: https://github.com/StudyResearchProjects/learn-c
- Owner: StudyResearchProjects
- Created: 2019-04-02T22:25:24.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2020-12-04T04:08:20.000Z (over 5 years ago)
- Last Synced: 2025-10-13T08:43:39.169Z (6 months ago)
- Topics: c
- Language: C
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```