I'm trying to compile this C++ program on Xcode
#include <iostream>
using namespace std;
int main()
{
cout << "C++ is power programming.";
return 0;
}
the text "C++ is power programming" is suppose to be displayed, there are no errors or warnings but no text shows up. Please help I'm new to programming.
#include <iostream>
using namespace std;
int main()
{
cout << "C++ is power programming.";
return 0;
}
the text "C++ is power programming" is suppose to be displayed, there are no errors or warnings but no text shows up. Please help I'm new to programming.