This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: C++ usage



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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]