ferox
March 10th, 2004, 03:51 AM
Here's the HelloWorld Program in C++.
#include <iostream>
using namespace std;
int main(void) {
cout<<"HelloWorld!"<<endl;
return 0; // Back to the caller
}
#include <iostream>
using namespace std;
int main(void) {
cout<<"HelloWorld!"<<endl;
return 0; // Back to the caller
}