Ich habe gerade erst mit dem Programmieren angefangen und folgendes Problem: Immer wenn ich versuche das untere Beispiel mit dem bcc32 Compiler (Borland C++ 5.5 free Compiler oder so) zu kompilieren gibt er die Meldung ganz unten aus. Das Programm ist ganz normal im Verzeichnis c:\bc55 installiert. Auch die Datei iostream.h ist vorhanden.
// bsp10001.cpp
#include
int main() {
int x;
cout > x;
cout bcc32 1.cpp
Borland C++ 5.5.1 for Win32 Copyright © 1993, 2000 Borland
1.cpp:
Error E2209 1.cpp 2: Unable to open include file ‚iostream.h‘
Error E2451 1.cpp 5: Undefined symbol ‚cout‘ in function main()
Error E2451 1.cpp 6: Undefined symbol ‚cin‘ in function main()
*** 3 errors in Compile ***