include files
#include
using namespace std;
or
#include
What is the difference between the two commands and which should I use?
Timothy "TriWolf" Russell
Timothy "TriWolf" Russell
quote:
#include <iostream>
does the same thing as
quote:
#include <iostream.h>
quote:
using namespace std;
brings the namespace std into the current scope (all the STL containers are in the std namespace)
Magmai Kai Holmlor
- The disgruntled & disillusioned
Edited by - Magmai Kai Holmlor on February 20, 2001 7:09:06 PM
Edited by - Magmai Kai Holmlor on February 20, 2001 7:09:49 PM
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement