Write a Program in C++ That Printing a Line of Text With Multiple Statements

// 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

Related Posts Plugin for WordPress, Blogger...