Site icon Learn C++

Learn How To Build A Modern C++ “Hello World” Example For Windows

If you are a beginner “Hello World” examples are good to understand feature of that programming language. It is good to understand how to edit text, how to write in its format, how to compile and link, how to debug and execute, how to deploy or release.

This example below is a modern “Hello World” example on Windows which runs with C++ Builder. Modern applications has GUI and they should be compatible with other operating systems (Windows, MacOS, iOS, Android). FireMonkey projects are Multi Device (multi-platform) applications that you can compile and run on Windows, MacOS, iOS and Android .

“Hello World” with Memo Component

TMemo is good to display all outputs as in console applications.
Open C++ Builder or RAD Studio IDE
– Create a new MultiDevice Application in C++ Builder from File menu
– Save all units and project files with “HelloWorld_” prefix in a HelloWorld folder.
– Add Memo and a Button from the Palette to your Form
– Double click to Button to create OnClick event, inside that Button1Click event write lines as below

[crayon-6606d3f3d0355975330484/]

– Run project by hitting F9 or click to Run with Debugging
– If there is error, please check your lines
– If all is fine then save all project
– if you check your header file you will see all your objects (Memo, Button etc. ) are automatically defined as below. You don’t need to change anything here

[crayon-6606d3f3d035c611888303/]

Exit mobile version