First time using the Ubunutu PuTTY Linux SSH client, I am unsure of why I am unable to successfully compile the code.
$ cat helloworld.cc
#include <iostream>
using std::cout;
using std::endl;
int main(int argc, char *argv[])
{
cout << "Hello world!" << endl;
return 0;
}
$ g++ helloworld.cc -o helloworld
$
The result I get is, from the last line, that it asks me to input another code, without any result or error from the compiler. Does anybody know what I need to change?