hallo, ich bin grad dabei, mir ein wenig C++ anzugucken und kann den hello world auf mdk9.2 nicht übersetzen. auf mdk9.1 hat das glaub ich geklappt.
der quelltext lautet:
#include iostream> !!die erste klammer wird hier nicht dargestellt!!
void main()
{
cout }
und die fehlermeldung:
[ingo@nadja Documents]$ gcc hello.cc
hello.cc:4: error: `main\' must return `int\'
hello.cc: In function `int main(...)\':
hello.cc:5: error: `cout\' undeclared (first use this function)
hello.cc:5: error: (Each undeclared identifier is reported only once for each function it appears in.)
hello.cc:5:17: warning: character constant too long for its type
[ingo@nadja Documents]$
kann mir da jemand weiter helfen?
squire