如果使用DOSBox在Windows 7中安裝了turbo執行程序,那麼如何編譯並通過命令提示符運行。我一直在使用環境變量-path setting.But試過當我運行該程序的如何在命令提示符下編譯和運行Turbo編譯器(Windows 7)
C:\TurboC++\Disk\TurboC3\BIN\tcc Test.c
Turbo c++ Version 3.00 Copyright (c) 1992 Borland
International:
Error test.c 1:Unable to open include file 'stdio.h'
Error test.c 2:Unable to open include file 'conio.h'
*** 2 errors in Compie ***
Available memory 4134742
C:\TurboC++\Disk\TurboC3\BIN\
========================== ======== test.c的
#include<stdio.h>
#include<conio.h>
void main()
{
printf("Hello command prompt");
getch();
}
你有使用Turbo C++的好理由嗎?這是一個21歲的編譯器,它只支持非常不成熟的C++和C子集。使用這種編譯器很可能會教你使用錯誤的編碼方法,就像你已經看到的古代代碼示例一樣。 有很多更好的現代編譯器。 –