what's the meaning of console | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what's the meaning of console

does it come in C/C++ also ??

4th Oct 2016, 10:17 AM
sayyed nooruzzaman
sayyed nooruzzaman - avatar
2 Answers
+ 1
console is for running only single line of code at a time. and yeah, all languages have it
4th Oct 2016, 1:22 PM
Redstone Tehnik
Redstone Tehnik - avatar
+ 1
It usually means 'terminal' as in: to sit in front of it, type things, and have something happen 'immediately' or 'interactively'. Consoles come with things like interpreters (javascript, ruby, python, bash, etc) debuggers and forensics tools, but not generally for compilers because the architecture expectations are different. The closest thing I see for C++ is: http://cpp.sh/ which is interactive in the sense that it's an editor console online. It's still compiling ALL of your code.
9th Oct 2016, 8:09 PM
Kirk Schafer
Kirk Schafer - avatar