Thread: C++ Programming
View Single Post
Old 03-09-2005, 02:18 PM   #4 (permalink)
Iron_Cross
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

Code:
#include <iostream.h>

int main()
{
cout << "Hello World";
cout << endl;
return 0;
}
will not work properly. Because cout is part of the std namespace. Which means it's fully quallified name is std::cout.
__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline