+ 2
which software do we need to run c++ ?
as in html and xml we use text document to type code and use browsers to run them so is this same in c++ ?
2 Answers
+ 15
No...
U will need compiler to compile ur programs...
Download & Install IDE for C++
for eg:-
net beans
eclipse
visual studio
code blocks
etc... any one u like đ
Good Luck
+ 4
You use a C++ compiler. On Linux it would be called g++ from the command line, or you can use Visual Studio to compile the code. PHP etc, is a runtime language. C++ is compiled before its run.