Click to See Complete Forum and Search --> : Testing Code Highlighter for vBulletin


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
}