Reputation: 293
Is there any command line interactive shell for C just like in Python ? Actually, I'd like to make one if its not done, at least if a stable one is still not present.
I'm good at C and basics of python.. What all things I should be knowing to really do this kind of project ?
Upvotes: 3
Views: 3202
Reputation: 725
Cling is an interactive C++ interpreter… [that] realizes the read-eval-print loop (REPL) concept, in order to leverage rapid application development
Upvotes: 0
Reputation: 88378
Yes, you can use c-repl.
There is some SO discussion on the package in this question.
The project might be old; there have been no checkins to its github master branch since October, 2009.
UPDATE - I found this SO question which has better answers: Is it possible to build a interactive C shell?
Upvotes: 1