No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Hi all, ok i have just started learning C++ today and i have download "Visual C++ 2008 Express Edition" and i am trying to make the "Hello World" program. I clicked on "Create Project" and then "Win32 Console Application" and then typed in the name "Hello World" then i right …
Hehe my second day learning c++ and i can answer part of your post. Try not to use... [CODE]system("PAUSE");[/CODE] because it messes the program up, use... [CODE]cin.get()[/CODE] instead.
Shouldnt you show your code so people could look for the problem?
Does the infomation make a differance to the programs speed? [CODE]// Operating with hello world #include <iostream> using namespace std; int main () { // Print out the result: cout << "Hello World! "; cout << "This is my program"; // Keep program running: cin.get(); //Terminate the program: return 0; …
The End.
DonkeyKong92