user1027046
user1027046

Reputation: 293

command line interactive shell for C

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

Answers (2)

Daniel Bang
Daniel Bang

Reputation: 725

Cling is an interactive C++ interpreter… [that] realizes the read-eval-print loop (REPL) concept, in order to leverage rapid application development

See project page on Github

Upvotes: 0

Ray Toal
Ray Toal

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

Related Questions