+ 3
why we use <iostream. h>?
4 odpowiedzi
+ 3
<iostream> and <iostream.h> contains methods such as cin, cout, cerr and the others.
<iostream.h> was more commonly used by C++98 and earlier, however, after C++03, it completely disappeared. So we no longer use it or need it. <iostream> is more than enough
+ 10
<iostream.h> is obsolete. Modern compilers recognise <iostream>
+ 6
we include it to be able to use things like cout, cin etc. They are not built in by default.
+ 6
thnks jay