•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the C++ section within the Software Development category of DaniWeb, a massive community of 455,975 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,758 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C++ advertiser: Programming Forums
Views: 93539 | Replies: 7
![]() |
•
•
Join Date: Aug 2003
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
// 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
// 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
•
•
Join Date: Feb 2002
Location: Lawn Guylen, NY
Posts: 11,019
Reputation:
Rep Power: 33
Solved Threads: 116
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
Do you run a computer-related website? Feature it in our niche link directory!
Do you run a computer-related website? Feature it in our niche link directory!
•
•
Join Date: Sep 2003
Location: deep withing 100100010100
Posts: 201
Reputation:
Rep Power: 6
Solved Threads: 1
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...
//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...
•
•
Join Date: Sep 2003
Location: San Diego, CA, USA
Posts: 75
Reputation:
Rep Power: 6
Solved Threads: 0
•
•
Join Date: Sep 2003
Location: deep withing 100100010100
Posts: 201
Reputation:
Rep Power: 6
Solved Threads: 1
#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...
•
•
Join Date: Sep 2003
Location: San Diego, CA, USA
Posts: 75
Reputation:
Rep Power: 6
Solved Threads: 0
>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.
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.
![]() |
•
•
•
•
•
•
•
•
DaniWeb C++ Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 2 (0 members and 2 guests)
Similar Threads
- Using a switch statement with nested if/else statements (C++)
- printf & cout (C)
- c++ help (C++)
- Help with error checking code (C++)
- compiling problems (C++)
- Data Abstraction (Computer Science and Software Design)
- Java (C++)
Other Threads in the C++ Forum
- Previous Thread: pow: DOMAIN error
- Next Thread: Displaying a League Table



Linear Mode