I am pretty new to Apple and trying to write my first c++ program on XCode platform. However due to it's complexity I am kind of stuck not knowing from where to start with. I would really appreciate if someone can explain me how to do that.
#include<iostream>
using namespace std;
int main()
{
cout <<"Hello World!\n";
cin.get();
}
By the way, I had no problem running it on Terminal.
Thank you in advance.
#include<iostream>
using namespace std;
int main()
{
cout <<"Hello World!\n";
cin.get();
}
By the way, I had no problem running it on Terminal.
Thank you in advance.