Jun 22, 2023 · C. replit. Follow. Apr 6, 2023·13.5K runs. C is a general-purpose computer programming language. It's used in operating systems, device drivers, and protocol stacks.
Replit is an online integrated development environment (IDE) that can be used with a variety of programming languages, including JavaScript, Python, Go, C++, ...
Sorted by: 34. Just found the IGCC (Interactive GCC) REPL. I like it. Example: ./igcc g++> int a = 1, b = 2; g++> printf ("%d ", a + b); 3 g++>. And it gives you compile errors like this: g++> c = 3; [Compile error - type .e to see it.] g++> .e <stdin>:14:1: error: use of undeclared identifier 'c' c = 3; ^.