1
I would like to test small chunks of C code in the same way I can with Python, opening the terminal and testing command by command, this would be possible with c?
1
I would like to test small chunks of C code in the same way I can with Python, opening the terminal and testing command by command, this would be possible with c?
5
There are several you can use own GDB as interactive shell, another debug that can be used as interactive shell is the UPS.
Beyond the Picoc already quoted by you can also quote
2
I found the Picoc
you can run multiple programs interactively
picoc myprog1.c myprog2.c myprog3.c
If you like to program with vim using Tmux or something like that, you can develop your program in one window and see the result in another in "real time"
Browser other questions tagged c interpreter
You are not signed in. Login or sign up in order to post.
I already tested the Crash. I recommend it for being based on the Clang, which is more intelligent in diagnosis, able to offer error messages simpler than one based on gcc.
– pepper_chico