Show HN: Bic – a C interpreter and API explorer
1–10 of 28 posts
Re: Show HN: Bic – a C interpreter and API explorer
#2Reminds me of CERN’s ROOT which has C/C++ interpreter https://root.cern.ch/
Re: Show HN: Bic – a C interpreter and API explorer
#3I often looked for this and failed to find something that I could easily use. So I'm delighted to see this as a on/off C amateur and learner.
Re: Show HN: Bic – a C interpreter and API explorer
#4Reminds me of CERN’s ROOT which has C/C++ interpreter https://root.cern.ch/
Huh, I didn't know about that tool. Looking through the docs this looks impressive, especially since it can do C++ too.
Re: Show HN: Bic – a C interpreter and API explorer
#5I often looked for this and failed to find something that I could easily use. So I'm delighted to see this as a on/off C amateur and learner.
Thanks! It's still a work in progress but should hopefully help people to get to grips with C.
Re: Show HN: Bic – a C interpreter and API explorer
#6Reminds me of CERN’s ROOT which has C/C++ interpreter https://root.cern.ch/
Their new repl is called cling: https://github.com/root-project/cling (They had an old one called C-INT or something like that).
Re: Show HN: Bic – a C interpreter and API explorer
#7This is really cool, nice work. I especially like the bit about putting a REPL statement in a source file to have it drop into bic. Seems like a quick and dirty way to debug without having to fire up gdb and such. Somewhere in between print statements and full on debugging.
Thanks for sharing.
Re: Show HN: Bic – a C interpreter and API explorer
#8I love that you have to #include how to exit :)
Re: Show HN: Bic – a C interpreter and API explorer
#9Why is fputs returning 1?
Re: Show HN: Bic – a C interpreter and API explorer
#10Why is fputs returning 1?
1 is a non-negative number. fputs() return nonnegative numbers on success...