Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikesmullin/c-scratchpad
Just a scratch/throwaway program written in C.
https://github.com/mikesmullin/c-scratchpad
Last synced: about 1 month ago
JSON representation
Just a scratch/throwaway program written in C.
- Host: GitHub
- URL: https://github.com/mikesmullin/c-scratchpad
- Owner: mikesmullin
- Created: 2024-09-15T16:47:42.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-28T05:42:18.000Z (about 2 months ago)
- Last Synced: 2024-11-28T06:27:51.402Z (about 2 months ago)
- Language: C
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Scratchpad
This is just a scratch program written in the C language.
I use it to quickly iterate on small ideas in C.
I will sometimes iterate here first, because its quick, then copy working code to my larger project.Similar to what I would do on [CodePen.io](https://codepen.io/mikesmullin) with Javascript.
## Usage
- Start the watch loop process.
```
C:\> node build_scripts\\Makefile.mjs watch
```
- Edit and save [test001.c](src/tests/unit/test001.c)
- Watch console output to see your code automatically recompiled + run on save.## References
- C String Manipulation
- https://www.youtube.com/watch?v=2wio9UOFcow
- C Arena Memory Management
- https://www.youtube.com/watch?v=TZ5a3gCCZYo
- https://www.youtube.com/watch?v=3IAlJSIjvH0
- https://www.youtube.com/watch?v=Tc763vPm4Ws