Your First Program
Applies To: C++Builder 1 or higher
Category: C++ Language
- Start a new console application using File | New... and then
- selecting Console Wizard.
-  
- Insert the following code:
-
- #include <iostream>
- #include <conio>
-
- using namespace std;
-
- int main()
- {
- cout <<< "Hello World!";
-
- getch();
- return 0;
- }
C++Builder Developer's Network
Copyright © Yoto Yotov