// Printing a line of text with multiple statements.
#include <iostream> // allows program to output data to the screen
// function main begins program execution
int main()
{
std::cout << "Welcome ";
std::cout << "to C++!\n";
} // end function main






0 comments:
Post a Comment