Mumbai University fails to keep up with the ever-evolving C++ syntax. Making Turbo C/C++ as their prescribed IDE, Turbo C/C++ is ancient and will not compile with the present syntax of C++. Here is the simplest example:
#include <iostream.h>
#include <conio.h>
void main()
{
cout << "Hello";
}
The above code, when compiled with g++ 4.3.4, will give the following errors, but [...]