3

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 ?

user1027046
  • 293
  • 1
  • 6
  • 11

2 Answers2

1

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?

Community
  • 1
  • 1
Ray Toal
  • 86,166
  • 18
  • 182
  • 232
0

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

Daniel Bang
  • 715
  • 6
  • 21