C++ cout statement

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Aug 2003
Posts: 1
Reputation: Msh84281 is an unknown quantity at this point 
Solved Threads: 0
Msh84281 Msh84281 is offline Offline
Newbie Poster

C++ cout statement

 
0
  #1
Aug 30th, 2003
// This program will write the name, address, telephone number
// and college major of the programmer.

// Michael Hawkinberry

#include <iostream>
using namespace std;

int main()
{

cout << " Michael Hawkinberry\n6393 Harlem-Grovetown Road, Harlem, Georgia, 30814\n(706) 556-3731\nComputer Science " << endl;
return 0;
}
Is this program error free? if there are errors could u send them to me?? thanks
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,040
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 127
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: C++

 
0
  #2
Aug 30th, 2003
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.
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Sep 2003
Posts: 208
Reputation: camelNotation is an unknown quantity at this point 
Solved Threads: 2
camelNotation's Avatar
camelNotation camelNotation is offline Offline
Posting Whiz in Training

the c++ problem

 
0
  #3
Sep 14th, 2003
Well I think I have some problems to solve for myself.As csegirl tells that there is nothing wrong with the program.I think I have something wrong with my compiler so that's why i'm posting a message here.If I am not wrong,the source code is like this:
//This program will write the name,address,telephone number
// and college major of the programmer
// Michael Hokinberry
#include <iostream>
using namespace std;
int main()
{
cout << " Michael Hokinberry\n 6393 Harlem-Grovetown Road,Harlem,Georgia,30814\n (706) ,556 - 3731\nComputer Science " << endl;
return 0;
}
At first,I tried to run this with my compiler and it said that it couldn't find the iostream file.
Then,there were three errors when I tried with iostream.h:
harlem.cpp(5):error c2501: 'using' missing decl-specifiers
harlem.cpp(5):error c2239: Unexpected token 'identifier' following declaration of 'using'
harlem.cpp:error c2061: syntax error identifier 'namespace'
I'm really mad at my compiler now...
Reply With Quote Quick reply to this message  
Join Date: Sep 2003
Posts: 81
Reputation: Valmian is an unknown quantity at this point 
Solved Threads: 0
Valmian Valmian is offline Offline
Junior Poster in Training

Re: the c++ problem

 
0
  #4
Sep 16th, 2003
What compiler are you using?
Ilya
P.S.: Can anybody please check out my "string to integer array" problem?
Reply With Quote Quick reply to this message  
Join Date: Sep 2003
Posts: 208
Reputation: camelNotation is an unknown quantity at this point 
Solved Threads: 2
camelNotation's Avatar
camelNotation camelNotation is offline Offline
Posting Whiz in Training
 
0
  #5
Sep 17th, 2003
When I installed the c++ in my hard disk it said "c/c++7".If you have not noticed yet,this compiler couldn't execute the static_cast statement,for casting integers to floats.But It succeded when I used float x = ( float ) y...I need to know whether I can run my c++ source codes in visual studio.net or visual c++ .net or whatever you call it...
Reply With Quote Quick reply to this message  
Join Date: Sep 2003
Posts: 81
Reputation: Valmian is an unknown quantity at this point 
Solved Threads: 0
Valmian Valmian is offline Offline
Junior Poster in Training

Re: C++

 
0
  #6
Sep 17th, 2003
you can compile your code with visual studio .net . In fact, I think that is the best non gcc IDE compiler for windows.
Reply With Quote Quick reply to this message  
Join Date: Mar 2004
Posts: 1,620
Reputation: kc0arf is a jewel in the rough kc0arf is a jewel in the rough kc0arf is a jewel in the rough 
Solved Threads: 51
Team Colleague
kc0arf kc0arf is offline Offline
Posting Virtuoso

Re: C++

 
0
  #7
Jul 29th, 2004
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
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 4,343
Reputation: Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future 
Solved Threads: 237
Team Colleague
Dave Sinkula's Avatar
Dave Sinkula Dave Sinkula is offline Offline
long time no c

Re: C++

 
0
  #8
Jul 29th, 2004
>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.
"One of the methods used by statists to destroy capitalism consists in establishing controls that tie a given industry hand and foot, making it unable to solve its problems, then declaring that freedom has failed and stronger controls are necessary." --Ayn Rand
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC