0
Please Help .. Is there any code here that can run in Turbo C++ 4.0?
2 Answers
+ 1
turbo c++ is really outdated and is not used anymore. it doesn't support the concept of namespaces, so you'll have to make some modifications in the code to make it work.
some of them are :-
remove "using namespace std"
add ".h" in the header file names. eg - change #include<iostream> to #include<iostream.h>
etc.