Thread: First C++ Application

  1. #1
    Registered User
    Join Date
    Feb 2002
    Posts
    14

    First C++ Application

    I heard that almost every C++ programmer, including professionals, started with this exact program:

    Code:
    #include <iostream.h>
    
    int main()
    {
    	cout << "Hello World!" << endl;
    	return(0);
    }
    I was wondering if that is true?
    Set VBDeveloper = New VisualCDeveloper

  2. #2
    "The Oldest Member Here" Xterria's Avatar
    Join Date
    Sep 2001
    Location
    Buffalo, NY
    Posts
    1,039
    yup.
    exept maybe without the parenthesees in return
    hehe

  3. #3
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    Not only many C++ programmers started with the Hello World program.

  4. #4
    Fingerstyle Guitarist taylorguitarman's Avatar
    Join Date
    Aug 2001
    Posts
    564
    My first compiled program was actually displaying my address.
    But, my professor did give us the "Hello World" example first.
    If a tree falls in the forest, and no one is around to see it, do the other trees make fun of it?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Cleanup of the application...
    By Petike in forum Windows Programming
    Replies: 1
    Last Post: 08-16-2008, 05:23 PM
  2. Problem with com application
    By amardon in forum C++ Programming
    Replies: 3
    Last Post: 10-06-2005, 05:50 AM
  3. MFC run application by clicking on file...
    By dug in forum Windows Programming
    Replies: 4
    Last Post: 12-02-2004, 04:33 AM
  4. Win application not very portable
    By swed in forum Windows Programming
    Replies: 5
    Last Post: 10-01-2001, 11:17 AM