Actually, I do not know if it is the compiler or not. I opened Xcode 3.2 and started a new project using the C++ Command Line option. A template opens up with the generic "Hello World" program. But when I click "Build and Run" it won't execute. I get the following error:
Here is the code that opens automatically:
I also suck at programming related stuff and only do it when I am forced to. So please use small words when talking to me.

Also: I have XCode 3.2.2 and I think there is something more updated. Is there an easy way to just update XCode? I tried going to Apple's XCode site but I am not seeing an option to "update." Just a "download" which I presume is a "Full Download."
Launch Stopped
The active architecture ppc is not supported by the debugger for cpu architecture i386/x86_64.
Here is the code that opens automatically:
Code:
#include <iostream>
int main (int argc, char * const argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
I also suck at programming related stuff and only do it when I am forced to. So please use small words when talking to me.
Also: I have XCode 3.2.2 and I think there is something more updated. Is there an easy way to just update XCode? I tried going to Apple's XCode site but I am not seeing an option to "update." Just a "download" which I presume is a "Full Download."