// Text-printing program.
#include <iostream> // allows program to output data to the screen
// function main begins program execution
int main()
{
std::cout << "Welcome to C++!\n"; // display message
return 0; // indicate that program ended successfully
} // end function main






0 comments:
Post a Comment