Borland is one company that create compilers. In the past, they released a version of C++ called Turbo C++ that was popular for programming in the DOS environment, and you may find some books still come with that compiler.
Website Borland mempunyai informasi mengenai kompiler mereka, dan memberikan download gratis dari kompiler mereka. Perusahaan tersebut memberikan versi baru dari kompiler mereka , yaitu Borland C++ 5.5 untuk di download.
Borland's webpage has information on their compilers, as well as some free downloads of their earlier compilers . They are now giving away a new version of their compiler, Borland C++ 5.5 for free download.
Catatan : Kompiler ini adalaha file 'command-line tool' : anda dapat menjalankannya dari DOS Prompt.
Note : that this compiler is a command-line tool: you will need to feel comfortable running it from the DOS prompt.
Mempelajari Pemrograman, tidak hanya sekedar 'memakan kacang' . Oleh karena itu saya akan memandu anda untuk menginstall Borland C++ di komputer anda.
Learn Programming, that not like 'eat peanut' . Because of that, i want to guide you to install Borland C++ in your computer.
Pertama, Download Compilernya Borland C++ atau Borland C++ 5.5 .. Kemudian ikuti Pengaturan Kompiler .
First, download compiler at Borland C++ or Borland C++ 5.5 .. And then follow the instruction Setting up your compiler.
Pengaturan Kompiler
Setting up Your Compiler
Ketika anda mendownload kompiler Borland, anda mendapatkan pengaturan dasar, termasuk direktori dasar,"c:\Borland\BCC55". Ketika anda menyelesaikannya, ikuti instruksi dibawah ini untuk menjadikan kompiler siap digunakan.
Once you've downloaded the Borland compiler, you can take the default installation options, including the default directory, "c:\Borland\BCC55". Once you've done that, follow the instructions below to get the compiler ready to use.
Anda perlu memberitahu kompiler dimana tempat untuk menemukan file INCLUDE dan LIBRARIES pendukung. Untuk melakukan hal ini, bukalah notepad (atau teks editor lainnya) dan pindahkan lah dua baris kata dibawah ke teks editor (notepad) kosong:
* You need to tell the compiler where to find the include files and supporting libraries. To do this, open up notepad (or any other text editor) and paste the following two lines into a blank file:
-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
Simpanlah file ini pada notepad sebagai "c:\borland\bcc55\bin\bcc32.cfg". Untuk melakukan hal ini, gunakan "Save As" dibawah menu "File" , kemudian ketikkan "bcc32.cfg" .
* Save this file in notepad as "c:\borland\bcc55\bin\bcc32.cfg". To do this, just go to "Save As" under the "File" menu, then type the entire file name, in quotes, into notepad. You need to include the quotes to keep it from adding a .txt extension.
Kemudian pindahkan baris dibawah ini juga ke notepad kosong :
* Now paste the following line into a new blank text file:
-L"c:\Borland\Bcc55\lib"
Simpanlah file baru ini sebagai "ilink32.cfg"
* Save this new file as "c:\borland\bcc55\bin\ilink32.cfg"
Luar biasa, sekarang anda telah siap mengetik dan menjalankan program. Menjalankan dan mengetes instalasi . Sejak Borland C++ 5.5 adalah command-line tool, anda akan membutuhkan sesuatu untuk menjalankannya dari command line.
Great, now you're ready to start writing and compiling programs.Compiling and Testing your Installation. Since Borland C++ 5.5 is a command-line tool, you will need to run it from the command line.
Sebelum mencoba untuk menjalankan program, anda membutujkan sesuatu code untuk dijalankan pada kompiler. Anda dapat menggunakan pada notepad atau mendownload text editor code yang lebih baik. Dan disarankan anda menyimpan file nya pada "c:\borland\bcc55\bin" direktori . Jika anda menyimpan di notepad, pastikan untuk menyimpan dengan tanda kutip ".cpp".
Before trying to compile a program, you'll need to actually write some code to test the compiler. You can do this in notepad, or download a better text editor. At any rate, you'll want to save the file in the "c:\borland\bcc55\bin" directory. If you save it in notepad, be sure to enclose the name in quotes to make it a ".cpp" file instead of a ".txt" file.
Dibawah ini program mudah yang dapat anda coba memindahkan ke notepad dengan nama "test.cpp" untuk mencoba instalasi kompiler :
Here's a simple program you can copy into notepad and save as "c:\borland\bcc55\bin\test.cpp" to test your compiler's installation:
#include
int main()
{
std::cout<< "I work!" <<>
}
Borland C++ kompiler bernama "bcc32" dan berlokasi "c:\borland\bcc55\bin" direktori .Dibawah ini langkah - langkah untuk menjalankan program pertamamu.
Borland C++'s compiler is actually named "bcc32" and it is located in the "c:\borland\bcc55\bin" directory; the below instructions will take you through compiling your first program.
Menjalankan Program
Compiling the program
1. Menuju start, klik run , dan ketik "Command", dan tekan enter.
* Go to start, click on run, and type "Command", and hit enter.
2. Kemudian , ketik "cd c:\borland\bcc55\bin dan tekan enter.
* Now, type "cd c:\borland\bcc55\bin" and hit enter.
3. Maka akan muncul direktori seperti, "c:\Borland\BCC55\Bin; jika tidak, cek yang anda telah ketikkan.
* You should be in the above directory now (your prompt should read: "c:\Borland\BCC55\Bin"); if not, check that you typed it correctly.
4. Ketikkan "bcc32 test.cpp" dan tekan enter. Keluaran yang akan muncul jika berjalan dengan benar seperti dibawah ini:
* Type in "bcc32 test.cpp" and hit enter. This should result in the following output if everything worked:
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
test.cpp:
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
Jika,hal tersebut diatas muncul maka hal itu berarti program tersebut bekerja.
which means that it worked.
Sekarang anda dapat menjalankan test program tersebut dengan mengetik "test.exe" dan tekan enter. Dan anda akan melihat seperti dibawah ini. * You can now run your test program by typing "test.exe" and hitting enter. You should see the text:
I work!
Terima kasih anda telah membaca artikel kami ini, kami berharap anda mencantumkan Blog kami sebagai sumber referensi anda. Untuk mendownload klik disini .. Borland C++ 5.5
Thank you for reading our article , we hope you write our Blog name as your reference source. For download click here .. Borland C++5.5
0 comments:
Post a Comment
Tim Gudang Materi mengharapkan komentar anda sebagai kritik dan saran untuk kami .. Hubungi kami jika anda mengalami kesulitan !