Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

(C++ Builder) Hello World console program in C++ Builder

 

To create a 'Hello World' program in C++ Builder, you can watch my YouTube movie or follow the steps below:

 

0.                  Click 'File | Close All'

1.                  Click 'File | New | Other', now you can choose what to create

2.                  Choose the 'Console Wizard' by double-clicking it

3.                  In the 'Console Wizard', do the following:

a.   set 'Source type' to C++

b.   uncheck 'Use VCL'

c.   uncheck 'Use CLX'

d.   uncheck 'Multi-threaded'

e.   check 'Console Application'

4.                  Now your console application project is set up. Change the code to the following standard C++ Hello World code:

 

 

#include <iostream>

 

int main()

{

std::cout << "Hello world" << std::endl;

std::cin.get();

}

 

 

5.                  Press F9 to run your application

 

 

External links

* Watch YouTube movie 'How to create a VCL Hello World program in C++ Builder'

 

 

Go back to Richel Bilderbeek's C++ page.

Go back to Richel Bilderbeek's homepage.