Hi. Im an idiot. Im also new to c++. Tell me the difference between #include<iostream.h> and #include<iostream> using namespace std. or something like that. I need a guide to show me the ways of programming before i hurt myself.
Printable View
Hi. Im an idiot. Im also new to c++. Tell me the difference between #include<iostream.h> and #include<iostream> using namespace std. or something like that. I need a guide to show me the ways of programming before i hurt myself.
iostream.h is the old way
iostream is the standard way
using namespace std;
just lets you not have to type std:: in front of alot of things
save you typing time.
Board search turned up this discussion of .h headers vs. standard headers