+ 1
what is the name of c++ compiler? please details
Gcc or GCC17 or GNU GCC
4 Respuestas
+ 4
Linux (and maybe BSD): Don't forget that the C++ compiler invocation is:
g++ file.cpp
or
gcc -std=gnu++17 file.cpp
I prefer the former. Also note you may have to explicitly install C++ support (usually installing the package "g++" solves it and dependencies). I vaguely remember something of this nature when I started programming in C++ on Debian.
+ 2
Depends on what type of complier your asking about, for instance, sololearn uses playground as a complier.
+ 1
thank's
0
Yeah, tough i might have explained it incorrectly, thanks anyways.