I am new to the whole area of programing. and I am trying to run a simple hello.cpp code that is in my C++ book. ( O'Reilly Practical C++ programing)
[ #include <iostream>
int main()
{
std::cout << "hello world\n";
return (0);
}]
When I try to open the hello.cpp code in xcode it...