Hi Guru,
The header 'iostream.h' is a non-standard header and does not exist on all platforms. So any code using it might not compile on the system.
The 'iostream.h' header used to be common before C++ was first standardized in 1998. But since the 98 standard used '<iostream>' instead of '<iostream.h>', the latter has fallen out of favor and is no longer supported on all platforms.
In order to resolve the issue, I suggest using
#include <isotream>
instead of
#include <iostream.h>
I hope this helps!
