I'm new to c++ and I'm on the "hello world" program and I keep getting the error
"cout" does not name a type I'm using geany on Ubuntu if that makes a difference and here is my code:
#include <iostream>
int main ()
{
extern cout << "hello world!";
return 0;
}
I don't want to make a new question so I'm going to add it here
With the revisions supplied it will compile now, but when i run the program i get the error
./geany_run_script.sh: 5: ./geany_run_script.sh: ./hello: not found
any ideas on that?