I don't know why I'm not able to compile c++ programme where as I'm able to compile c programme in turbo c++. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

I don't know why I'm not able to compile c++ programme where as I'm able to compile c programme in turbo c++.

in c++ #include<iostream.h> #include<conio.h> using namespace std; int main().......... it was not getting compiled can anyone help me......??

9th Oct 2017, 2:23 PM
SAKSHI
SAKSHI - avatar
2 Answers
+ 7
using namespace std; is simply unrecognizable by Turbo C++. You need to remove it. Then it will work...
9th Oct 2017, 2:37 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
+ 3
If you are not using turbo for school. I recommend that you stop using it. https://www.sololearn.com/discuss/288609/?ref=app
9th Oct 2017, 3:05 PM
Manual
Manual - avatar