Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeusdeux/c-interpreter
Interpret a small subset of C just for some quick checks
https://github.com/zeusdeux/c-interpreter
Last synced: 13 days ago
JSON representation
Interpret a small subset of C just for some quick checks
- Host: GitHub
- URL: https://github.com/zeusdeux/c-interpreter
- Owner: zeusdeux
- License: mit
- Created: 2024-05-12T20:48:04.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-21T15:40:52.000Z (6 months ago)
- Last Synced: 2024-05-22T11:16:35.925Z (6 months ago)
- Language: C
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# C Interpreter
Interpret a small subset of C just for some quick checks that I would like to run.
For example:
```c
char *s = "Test string";
printf("%s (%zu bytes)\n", s, sizeof(*s));
```