Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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));
```