+ 1
why we do not use .h after iostream
4 odpowiedzi
+ 2
cuz i believe this is for old compilers or for C/C#
we are dealing with C++ here a new version too
+ 1
if you don't writes it then also it works
0
The compiler automatically puts .h if it doesn't exist.
0
remember, if you want..
#include<iostream>
then always write after
using namespace std;
this line. otherwise, if
you are written..
#include<iostream.h>
then no need above line.
in short, without header
.ext file you must need
that line unless simple it.
thank you.