A simple C interpreter that interpretes itself.
1.clone source code SimpleC.c
to your dir.
git clone https://github.com/njZhuMin/SimpleC-compiler.git
2.Compile
gcc -o SimpleC SimpleC.c (you may need the -m32 option on 64-bit machines)
./SimpleC hello.c
./SimpleC -s hello.c
3.Try this out
./SimpleC SimpleC.c hello.c
./SimpleC SimpleC.c SimpleC.c hello.c
This project is inspired by project c4 and is mainly based on it.
However, I rewrited them all to make the code more understable.
Despite the complexity we saw in books about compiler design, writing one is not that hard. You don't need that much theory though they will help for better understanding the logic behind the code.
https://zhum.in/blog/categories/project/SimpleC
Further Reading: Let's Build a Compiler: An excellent starting material for building compiler.