Hi.

when I include iostream.h
cout compiles and getchar() compiles

when I include iostream
stating using namespace std
cout compiles and getchar() compiles

but without including using namespace std statement
std::cout compiles and std::getchar() gives error messages???

does std:: only work for certain functions and how do i know which ones
thanks.