Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Borland C++ Builder » Compilerproblem

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
02.11.2002, 14:39 Uhr
~chris
Gast


hallo zusammen

Ich habe den Borland 5.02 C++ Compiler. Bei normalen C-Files hat er keine Probleme. Das Problem ist, dass beim Compilieren von C++ Files, der Compiler eine Meldung ausgibt,
z.b. beim Progamm

int main()
{
cout<<"Hello world";
return(0);
}

Make failed. Undefinied symbol 'cout' ?
Kann mir jemand weiterhelfen ?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
02.11.2002, 16:34 Uhr
void*
Generic Pointer
(Operator)


Hallo!

Du musst die iostream inkludieren und ggf. den namespace std global oeffnen oder cout mit std::cout ansprechen:

Also

C++:
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello world";
return(0);
}



oder

C++:
#include <iostream>
int main()
{
std::cout<<"Hello world";
return(0);
}


--
Gruß
void*
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ Borland C++ Builder ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: