This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: C++ usage
- From: ArtÅras Moskvinas <arturas dot moskvinas at gmail dot com>
- To: JÃrg Gautschi <j dot gautschi at tiscali dot ch>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Mon, 21 Nov 2005 19:27:23 +0200
- Subject: Re: C++ usage
- References: <200511211818.06872.j.gautschi@tiscali.ch>
Hello
I am migrating from MS Windows to SUSE Linux 9.2. I am a beginner. And trying
to use the C++ Compiler (3.3.4), I only get error messages (see added
protocol gcc-test.pdf). The compiler not even "understands" the object cout.
Is there someone who can help me?
With kind regards
Joerg Gautschi, Lenzstrasse 31, CH-5734 Reinach AG, Switzerland
cout object is in std namespace, so to access it, you must use
std::cout, or use "using std;" (it is not recommended).
Arturas M.