Notice
Recent Posts
Recent Comments
Link
공학박사 권경안
Borland C++ Compiler (Windows) 환경설정 본문
Getting Started...
- Download the Free Borland C++ Compiler.
- Add to your local path, the bin folder of the Borland Compiler (e.g. C:\Borland\BCC55\Bin)
- In the bin folder:
- Create a new file "bcc32.cfg".
Add the following content.
-I"C:\Borland\Bcc55\include"
-L"C:\Borland\Bcc55\lib" - Create a new file "ilink32.cfg"
Add the following content.
-L"C:\Borland\Bcc55\lib"
- Create a new file "bcc32.cfg".
- Test your environment with the popular Hello World program
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello C++ << endl;
return 0;
} - Compile and run as:
> bcc32 HelloWorld.cpp
> HelloWorld.exe
'Programming' 카테고리의 다른 글
[C언어] 텍스트 파일 읽어(fread) 개행문자(\n) 제거한 후 파일 쓰기(fwrite) (0) | 2012.04.22 |
---|---|
adb shell - getevent X Y 값 구하기 (0) | 2012.04.10 |
soft (0) | 2011.03.03 |
우리가 집중해야될 또 하나의 서비스. Google Art Project (0) | 2011.02.03 |
SQL MERGE 명령어 (0) | 2010.05.27 |