http://forum.html.it/forum/showthrea...hreadid=795858

PS: iostream.h è obsoleto, devi usare iostream al posto suo:

codice:
#include <iostream>

#using namespace std;

int main()
{
   cout << " CIAO MONDO! ";
   return 0;
}