betriebssystem: WinXPProf compiler: kostenloser Borland C++ Compiler
ich habe mir den compiler runtergeladen und im verzeichnis CBorland\BCC55 installiert. die umgebungsvariablen habe ich umgeändert: name: path wert: %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32 \Wbem;CBorland\BCC55\Bin;
dann noch die CFG dateien erstellt: bcc.cfg: -I"cBorland\Bcc55\Include" -L"cBorland\Bcc55\Lib" ilink32.cfg: -L"CBorland\Bcc55\Lib"
folgendes Programm will ich compilieren: hallowelt.cpp: (speicherort challowelt.cpp)
#include <iostream.h> void main (void) { cout<<"Hallo Welt!"; }
in der ms-dos eingabeaufforderung tippe ich ein cbcc32 hallowelt.cpp
es erscheint:
C>bcc32 hallowelt.cpp Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland hallowelt.cpp: Error E2209 hallowelt.cpp 1: Unable to open include file 'iostream.h' Error E2451 hallowelt.cpp 4: Undefined symbol 'cout' in function main() *** 2 errors in Compile ***