On Jun 25, 10:11 pm, Anarki <Deepchan...@gm ail.comwrote:
what are the differences between
>
1) #include <iostream.h>
This was valid before the STL became standard.
After standardization it is no longer valid. Some compilers support it
but only for backwards computability, as a result any code using this
is not very portable.
>
2) #include <iostream>
using namespace std;
This is part of the STL.
All items in the STL are in the std namespace.
Comment