Yeap, it looks fine to me. If I were you I wouldn't be publically displaying your name, address, and phone # on a public forum ... if that is your real contact info, that is.
cscgal
The Queen of DaniWeb
19,423 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 230
What compiler are you using?
Ilya
P.S.: Can anybody please check out my "string to integer array" problem?
Valmian
Junior Poster in Training
82 posts since Sep 2003
Reputation Points: 13
Solved Threads: 0
you can compile your code with visual studio .net . In fact, I think that is the best non gcc IDE compiler for windows.
Valmian
Junior Poster in Training
82 posts since Sep 2003
Reputation Points: 13
Solved Threads: 0
Hello,
I am wondering what the "using namespace std;" statement is all about. I have never seen it, yet have done the "hello world" program as coded above many times.
Christian
kc0arf
Posting Virtuoso
1,937 posts since Mar 2004
Reputation Points: 121
Solved Threads: 57
>I am wondering what the "using namespace std;" statement is all about.
It's a modern, standard C++ (as opposed to old, pre-standard C++) way to use an unadorned cout (for example), which is a member of the std namespace. Here are a few more details.
Dave Sinkula
long time no c
5,058 posts since Apr 2004
Reputation Points: 2,780
Solved Threads: 314