Hallo,
ich habe mir mal den Borland C++ Compiler 5.5.1 runtergeladen
und wollte nun auch dierekt loslegen.
Alerdings kommt beim compilen der C++ Datei ein Fehler.
"Error E2209 test.cpp 1: Unable to open include file 'iostrem'"
Habe folgenden Code
Code:
#include <iostream>
using namespace std;
int main() {
cout <<"test";
return 0;
}
Dann habe ich noch folgendes probiert
Code:
#include <iostream.h>
int main() {
cout <<"test";
return 0;
}
Aber da kommt der selbe Fehler.