< Understanding C++
/*
* helloworld.cpp
* Displays:
* Hello World!
* My name is JL!
*/
#include <iostream.h>
{
int. main () {
std::cout << "Hello World!" << std::endl << "My name is JL!" << std::endl;
return 0; // exit program
}
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.