Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
C++CodeIDE

This Is How To Create And Run A Program In The C++ IDE

use cpp and all4a

C++ is one of the most powerful programming languages as well as being one of the world’s most popular. C++ Builder is a powerful C++ IDE which is suitable for both beginners and professionals alike. C++ Builder has free C++ Builder Community Edition and C++ Builder Professional / Architect / Enterprise Versions.

Using a fast and reliable C++ IDE is very important for beginners and professionals alike whether they are developing C++ apps for Windows or for any of the other operating systems and targets. C++ is subjectively the World’s most powerful programming language and consistently one of the world’s top four most popular programming languages. Thanks to it’s huge range of ready-made variables, functions, methods, namespaces and libraries it’s the do-everything toolkit which can be used for everything from regular simple apps to low-level operating system drivers, IoT hardware driving and everything in between. When a user wants to develop modern C++ applications, she or he will benefit from investing a very small amount of time in becoming familiar with the functions, features and shortcuts of a professional IDE. A small effort in that area pays dividends in productivity In this post we explain basic of C++ Builder as a guide for beginners.

As a C++ compiler, the Best Professional C++ IDE and Code Editor to Implement C++ Programs for Windows, iOS and Android is the latest version of RAD Studio or C++ Builder,

How to run A C++ program with The RAD Studio C++ IDE and/or C++ Builder?

cbuider studio final icons 64 9744851 4964591 6127446 4112068 5843153

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, macOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. C++ Builder comes with Rapid Application Development Studio, also known as RAD Studio, and C++ Builder is one of the most professional IDE’s that work under RAD Studio. It is the oldest IDE (it began as Borland TurboC in 1990 and was later renamed Borland C++ Builder). Under the Embarcadero brand, multiple new versions have been release, year upon year, along with great new features, updates, and support to ensure that your apps can stay current. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs. There is a free C++ Builder Community Edition for students, beginners, and startups.

rads11 1u1light welcome 9155681
The Latest RAD Studio C++ Builder Welcome Screen

More details about C++ Builder & RAD Studio for the beginners can be found in Official Wiki of Rad Studio.

You can download the free C++ Builder Community Edition here: https://www.embarcadero.com/products/cbuilder/starter. Professional developers can use the Professional, Architect or Enterprise versions of C++ Builder. Please visit https://www.embarcadero.com/products/cbuilder.

See What’s New in RAD Studio 11

Download RAD Studio 11 Now

What are the various parts and features of the C++ IDE?

C++ Builder IDE has mainly 5 Parts, the Code Editor Window and Form Designer, Projects Window, Palette Window, Structure Window, Object Inspector Window. You can find more , less commonly used windows from the main IDE menu as well as the right-click context menus. All the basic sections can be summarized in this IDE picture;

radside 2132995 5304119 9726871 2085482

Now let’s explain each of these areas shown above.

1.The Code Editor and Form Designer: The Code Editor and the Form Designer occupy the center pane of the IDE window. The Code Editor is a full-featured, customizable UTF8 editor that provides syntax highlighting, multiple undo capability and context-sensitive help for language elements. You can switch between them by using F12 or from lower tabs in IDE. As you design the user interface for your application, RAD Studio generates the underlying code. When you modify object properties, your changes are automatically reflected in the source files.

2. The Project Window : The Project Window displays and organizes the contents of your current project group and any project it contains. You can perform many important project management tasks, such as adding, removing, and compiling files. The default location of the Projects window is the upper right corner of the IDE, but the window is dockable, as are many windows in the IDE

3. The Tool Palette Window: The Tools Palette Window has UI elements, components that can be used in application UI design, it assists with a new project, adds components to a form, or adds code snippets to the Code Editor.

4. The Structure Window: The Structure View Window displays a tree diagram that shows the hierarchy of elements in the active window (that is, the Code Editor or the Form Designer)

5. The Object Inspector Window: The Object Inspector is used to examine and edit the properties and events for the currently selected object or objects. Every design object (Components, UI Elements) can be edited by clicking on it then setting its properties and events in the Object Inspector Window.

Running C++ Codes :You can Run your code by pressing F9 or Run button on the top bar. You can use other Run Without Debugging. There is a Stop and Pause button if your code is in loop. On the run time you can use debug, break points, watch variables and many other runtime features.

Switching between the Design and Code View: You can press F12 to switch between the Code Editor and Form Designer. The latest C++ Builder also allows you to use both of them together in the same screen. You can switch code, header and design view from the bottom top bars.

Switching Between the Code Files: You can use tabs on the top to switch between .c or .cpp files and .h headers.

How can I create a new C++ project?

If you are asking How do I compile a cpp program? What is compiling in cpp? How do I compile cpp in terminal? Does C++ need to be compiled? How do I run a CPP program? first you need to create a new C++ program.

Normally you can create a new C source code or C++ source code by an editor and you should save all to your working directory path. When you compile a C++ file you create a link output. You can also create executable files by using compiler binary in a command prompt in command line with link option which means you run linker. This created executable file is a EXE file which means it runs machine code in your computer. Many languages has compiler options to optimize your codes to a perfect executable output. Note that generally C++ filenames has .cpp extension, C files has .c extension and header files has .hpp or .h extensions. Generally main include files are in include path of the compiler. To run a program just type the executable output in command line or double click on it in your operating system.

Compiling Cpp files results with creating executable applications from these cpp file. You can use Embarcadero C++ Builder compilers (bcc32*.exe) , Dev-C++ compiler, gnu compiler (aka gcc compiler), visual studio code or other c and C++ compilers.

C++ Builder greets you with a Welcome Screen. You can create a new project by using File->New menu on the top. By using this menu. You can create a new MultiDevice Application in C++ Builder with FireMonkey framework or a new Windows VCL Application in C++ Builder with VCL framework or you can create a Console Application in C++. There are more options to develop more professional static, dynamic libraries.

radside0 1950995 3637363 7665054
RAD Studio C++ Builder in the Dark Mode

When you create a project this will create a Project source code file and a Unit which has a visual window. Your project will have .bpr, .cpp, PCH.h files, this project also includes two more .cpp and .h units. You can start designing your app with this ready-made unit as launching point, adding your own code by modifying these Unit files and its .h header. You can add more Units with new .cpp and .h files in your project..

How to run a program C++ with a GUI?

C++ Builder, RAD Studio is the easiest and fastest C and C++ IDE for building simple or professional applications. One of the great feature is its Designer which is full of a rich toolset of many new features. You can easily add new visual UI elements which are called as Components. Just choose a component, i.e Button (TButton), Edit (TEdit), Memo (TMemo), Label (TLabel), etc. from the Palette Windows you want to use and drag on to your form design. When you click on a component you can drag them to a new position or you can change its width height and corner positions by pressing blue squares around it. When you do this it will guide you with lines to show make it aligned with other component edges.

radside designder 7712320 5981010 1395823

Every component may have different properties or events. You can check them and you can change their properties manually by clicking on them and using Object Inspector. Some components generate their basic events in the code editor automatically. For example you can double click the Button to write your “button click” code (that is executed when the user clicks on the button) inside it. This concept of “code behind” is key to how C++ Builder works and is central to how easy it is to write really great, visually stunning C++ programs with it.

If you are new to programming or even if you coming to C++ from another programming language, sometimes it is hard to understand how to write C_++ code, how to design the screens and how to compile and run your apps. In this post we will explain how to compile C++ code in Windows to produce Modern C++ applications in Windows

If you have trouble, here is more detailed post that explains how you can compile C++ apps on Windows,

Here is a simple C++ example, a kind of ‘Hello World’ example,

In this article, you’ll find the resources need to answer the question, “What is the IDE software and how beneficial is it to the process of coding and programming?”

Download and Install The Latest C++ Builder or RAD Studio IDE Now !

cbuilder 11 512x5121x 7286189 8695819 4611386 2297871

You can download the free C++ Builder Community Edition here: https://www.embarcadero.com/products/cbuilder/starter.

Professional developers can use the Professional, Architect or Enterprise versions of C++ Builder. Please visit https://www.embarcadero.com/products/cbuilder.

The latest new posts, more examples and tutorials can be found at this dynamic C++ link for blogs.embarcadero.com and on the dedicated C++ site LearnCPlusPlus.org which is a great totally free resource packed full of articles where you can easily improve and expand your C++ programming knowledge and skills.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES