-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any missing feature of pure C (not C++)? #146
Comments
I link here a similar question I've opened on Jupyter notebook kernel for C++, that I also intend to use for my teaching. |
Actually, there is a lot of missing features:
|
Hi @felixhao28, thanks for the detailed answer. And you're right to remind that it's an interpreter, but precisely I want to avoid presenting things in binary like "Python is interpreted, C/C++/Java are compiled" (Python has Numba, Pypy with JIT, Cython ; C/C++ have well your project, CLING and a CLING kernel for Jupyter, Java have JShell and IJava for Jupyter). |
Hello there,
First of all, 👏 👏 this project is amazing, I just discovered it, and played for an hour on the online JSCPP interpreter.
It's a great tool for teaching I think! So thanks!
Regarding teaching, I'll have to teach a few introduction courses to C, and of course I'll start by using a local real compiler for C, but I would like to also have such basic environment online, and hosted locally on the machines that my students will use: this way, there is nothing to install, it works on Windows, and no need for Internet access, just a web-browser to a local folder.
I'm not a very strong expert of C and C++, but from what I understood, any valid C99 or C11 program is also valid in C++, with the same semantic, so I can expect JSCPP to be able to run correctly any (small and simple enough) C program?
I saw the list of libraries, and
#include <math.h>
works, which will be enough for a huge part of my classes.My question is in the title: Is there any (known) missing feature of pure C (not C++)?
Thanks!
Regards from France, @Naereen
The text was updated successfully, but these errors were encountered: