Borland C++ 5.5 テストプログラム実行
1. test.c ファイルを作成 D:\test 直下にtest.cファイルを作成。test.cの中身は以下の4行。 #include <stdio.h> void main() { printf("Hellow World"); } 2. コンパイル MS-DOSを起動。 1.D: を入力 2.cd test を入力 3.bcc32 test.c を入力
3.D:\testに3つのファイルが作成される 4.実行 test.exe を入力 Hellow Worldと表示される
戻る TOPへ