Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedro-psb/clang-workbook
https://github.com/pedro-psb/clang-workbook
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pedro-psb/clang-workbook
- Owner: pedro-psb
- Created: 2023-08-30T18:05:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-15T17:16:43.000Z (about 1 year ago)
- Last Synced: 2024-10-14T09:44:39.088Z (3 months ago)
- Language: C
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C language workbook
Here I'll add small exercises to practice the C language.
Currently, I'm using the following exercise resources:
* "The C Programming Language Book" (clp)
* PDS-1 courses (UFMG, 2023/2). (pds)The folder structure is as following:
* `exercises/` - contain the exercise instructions and starting point material.
* `workspace/` - my personal resolution to the exercises.
* `utils/` - some utility resources that may help boilerplate.## Aditional Resources
### Minimal TDD template
Simple template file with minimal test setup.
It leverages "assert.h", some custom macros and boilerplate stuctures.
And features a envvar reader to switch between the program flow and the test suite
(within the same binary).