C++ Programming/Examples/Hello World

// 'Hello World!' program 
 
#include <iostream>
 
int main()
{
  std::cout << "Hello World!" << std::endl;
  return 0;
}
Category:Book:C++ Programming#Examples/Hello%20World%20

Category:Book:C++ Programming