I\'m trying to compile a simple Hello World program in C++ but I keep getting the following error...why?
gcc -o HelloWorldCompiled HelloWorld.cc /tmp/ccvLW1e
Or you could still use gcc but explicitly link with the c++ library thusly:
gcc
gcc -o HelloWorldCompiled HelloWorld.cc -lstdc++