vote up 1 vote down star

This very simple code gives me tons of errors:

#include <iostream>
#include <string>

int main() {
    std::string test = " ";
    std::cout << test;
}

I tried to compile it on linux by typing gcc -o simpletest simpletest.cpp on the console. I can't see why it isn't working. What is happening?

flag

6 Answers

vote up 8 vote down check

Try using 'g++' instead of 'gcc'.

link|flag
And add return 0; as rmeador pointed out. – grieve Nov 5 '08 at 22:51
that was it. such a silly mistake! thanks – bullettime Nov 5 '08 at 22:55
2  
actually, c++ has a special concession that allows main to not have a return statement even with it declared returning an int. in which case it will implicitly return the proper success value, usually 0. – Evan Teran Nov 5 '08 at 22:56
@Evan: I didn't realize that. I'll have to test out my various C++ compilers and see which ones actually implement that feature. – grieve Nov 5 '08 at 23:00
1  
A function declared to return a value (say, int) but that does not actually have a return statement will compile, should cause a warning but not an error, and will return garbage values when run. I believe the "special concession" is to have main() return a sensible 0 instead of garbage. – Max Lybbert Nov 5 '08 at 23:48
vote up 0 vote down

You declared your main() as returning an int yet you have no return statement. Add return 0; and see if that helps. If that doesn't solve your problem, try editing your post to include some representative lines from those errors your getting and maybe we can help you better.

link|flag
the problem was that i was using the wrong compiler... silly me although i can see that the missing return statement, even if it didn't throw any warnings or errors, must be bad practice. Thanks – bullettime Nov 5 '08 at 22:54
actually, c++ has a special concession that allows main to not have a return statement even with it declared returning an int. in which case it will implicitly return the proper success value, usually 0. – Evan Teran Nov 5 '08 at 22:54
@Evan: interesting... I used to declare my main() to be void so I don't have to return something, when I used compilers that supported it. G++ doesn't like that though, so I have to make it be int and return 0. – rmeador Nov 5 '08 at 23:14
It was always wrong to declare main() to be void, unless you intentionally rely an a particular implementation's extensions. – Windows programmer Nov 5 '08 at 23:28
vote up 5 vote down

Try:

g++ -o simpletest simpletest.cpp
link|flag
that's right, it worked, thanks! – bullettime Nov 5 '08 at 22:57
vote up 5 vote down

Try with g++ -o simpletest simpletest.cpp. gcc is the C compiler, while g++ is the C++ compiler which also links in the required C++ libraries.

Additionally, you will have to add a return 0; at the end of your main() function.

link|flag
actually, c++ has a special concession that allows main to not have a return statement even with it declared returning an int. in which case it will implicitly return the proper success value, usually 0. – Evan Teran Nov 5 '08 at 22:55
gcc is actually the GNU compiler collection; you can still compile C++ code with gcc, but you must explicitly link in the C++ standard library with the -lstdc++ option. – Adam Rosenfield Nov 5 '08 at 23:05
C99 also has the same awful concession to abysmal coding practices (that is, you can omit a return from the end of main() and it is equivalent to a return(0); at the end of main()). – Jonathan Leffler Nov 6 '08 at 0:03
vote up 2 vote down

if your compiler is picky you may want to add that all important return 0; at the end there

link|flag
Not necessary in standard C++ -- nor in C99. That said, I'd add the explicit return; the implicit return is pretty nasty. – Jonathan Leffler Nov 6 '08 at 7:46
vote up 7 vote down

To add to what others have said: g++ is the GNU C++ compiler. gcc is the GNU compiler collection (not the GNU C compiler, as many people assume). gcc serves as a frontend for g++ when compiling C++ sources. gcc can compile C, C++, Objective-C, Fortran, Ada, assembly, and others.

The reason why it fails trying to compile with gcc is that you need to link in the C++ standard library. By default, g++ does this, but gcc does not. To link in the C++ standard library using gcc, use the following:

gcc -o simpletest simpletest.cpp -lstdc++
link|flag
That solves link errors but the original poster complained about compile errors ; – Windows programmer Nov 5 '08 at 23:26
The original poster didn't specify whether he's getting compiler or linker errors, but if you compile that code yourself using gcc you'll get linker errors. – Adam Rosenfield Nov 6 '08 at 0:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.