Saturday, February 21, 2004
#include <iostream>
#include <string>
function helloWorld( ) {
    string strSayHello = "Hello world!";
    cout << strSayHello << endl;
}
int main( ) {
    system( "cls" );
    helloWorld( );
    return EXIT_SUCCESS;
}
			Comments:
			
			Post a Comment
		
	
	
