GNU Forum <[EMAIL PROTECTED]> writes: > In My application iam using #include<sstream> header to convert from > integer to string. And it is working > fine with gcc-4.2.1. When i try to Run with gcc-3.4.2 it is giving error : > <sstream> not found. > Please help me what i have to do make it work.
Please read this: http://catb.org/esr/faqs/smart-questions.html What command line did you use to compile your source, and what is the name of the source file? It is likely that you did something like this: gcc -c foo.c There are two problems with above: use 'g++' to compile C++ sources instead of 'gcc' -- they are not the same thing. Also, do not name C++ sources with .c extension. Use .cc, .cpp, or .cxx instead. Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. _______________________________________________ help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
