Mega Code Archive

 
Categories / C++ Tutorial / Development
 

Printing a line of text with multiple statements

#include <iostream>  int main() {    std::cout << "Welcome ";    std::cout << "to C++!\n";    return 0; } Welcome to C++!