Thread: C++ Programming
View Single Post
Old 03-09-2005, 02:13 PM   #3 (permalink)
Mohan Giri
 
True Techie

Join Date: Dec 2004

Posts: 145

Mohan Giri

Default

Without using namespace std;

#include <iostream.h>

int main()
{
cout << "Hello World";
cout << endl;
return 0;
}

would work properly know. Then why we have to use the

using namespace std;

statement separately. Its waste of time know????????/
Mohan Giri is offline