Jörg, The same code is required for any Visual C++ compiler. You could try test building and then transfering if you are having issues deciphering the errors. Corey On 11/21/05, John Love-Jensen <eljay@xxxxxxxxx> wrote: > Hi Jörg, > > The cout symbol is in the std namespace. > > Try this: > > #include <iostream> > int main() > { > std::cout << "C++ Test\n"; > } > > HTH, > --Eljay > >