faqts : Computers : Programming : Languages : C++

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

7 of 8 people (88%) answered Yes
Recently 7 of 8 people (88%) answered Yes

Entry

C++: Application: Console: Create: Borland: C++Builder: How to create a console application?

Jan 4th, 2004 11:53
Knud van Eeden,


----------------------------------------------------------------------
--- Knud van Eeden --- 04 January 2004 - 08:45 pm --------------------

C++: Application: Console: Create: Borland: C++Builder: How to create 
a console application?

---

Borland C++Builder v6

---

Steps: Overview:

 1. -Open Borland C++Builder

 2. -select from menu option 'File'

 3. -select from list 'New'

 4. -select from list 'Other'

 5. -select tab 'New'

 6. -double click on icon 'Console Wizard'

 7. -click button 'OK'

 8. -that will open a text window, containing the minimum information:

//---------------------------------------------------------------------
------

#include <vcl.h>

#pragma hdrstop

//---------------------------------------------------------------------
------

#pragma argsused

int main(int argc, char* argv[])

{
        return 0;

}

//---------------------------------------------------------------------
------

---
---

Internet: see also:

---

Delphi: Application: Create: New: Console: How to create a new console 
application in Delphi?
http://www.faqts.com/knowledge_base/view.phtml/aid/25624/fid/175

----------------------------------------------------------------------