Greets.
Any C++ programmers handy?
I installed redhat 5 and went to start playing with the
gnu c++ compiler, gcc/g++. I use a different compiler at
work, but that should hardly make a difference in this
case:
I compile hello world successfully, but running it
produces no output!!!
What on earth could be wrong?
#include <iostream.h>
int main()
{
cout << "Yo. World.";
return (0);
}
-bluejack