Most schools and colleges in India that teach Computer Science or Information Technology tend to use C and C++ as the first programming languages. The sad part is that many of these C++ courses still use the Turbo C++ Compiler.
Here's the compiler that I'm talking about:
Turbo C++ 3.0 | Image Courtesy: Wikipedia
C++ has evolved a lot since Turbo C++ was released. Turbo C++ 3.0 was first released in 1991. If you like using software that's more than 20 years old, you'd probably want to switch to Windows 95 too.
I've tried to create a list of reasons why you shouldn't be using Turbo C++:
std::string
or std::vector
din't exist. If you're college uses Turbo C++, it's going to expect you to use C-style strings and arrays.static_cast
, const_cast
, dynamic_cast
, reinterpret_cast
). Only C-style casts are supported.iostream
and fstream
).At the end of the day, it's all about learning to program though. You can always use what's being taught to learn more. If you're really upset about Turbo C++ being used in your college, this might make you feel better.
However, I really think you should do yourself a favour and learn C++11 or C++14 rather than some ancient non-standard C++ and you'll be glad you did so.