Programmieren leicht erlernt |
include <iostream.h>
main()
{
cout << "Dies ist ein Test";
}
|
void Ausgabe();
main()
{
Ausgabe();
}
|
include <iostream.h>
void Ausgabe()
{
cout << "Dies ist ein Test";
}
|
include <iostream.h>
main()
{
co ut << "Dies ist ein Test";
}
|
|
main.cpp: In function `int main()': main.cpp:4: `co' undeclared (first use this function) main.cpp:4: (Each undeclared identifier is reported only once main.cpp:4: for each function it appears in.) main.cpp:4: parse error before `<' |