Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 2 Exercise 1
Using std_lib_facilities.h by Bjarne Stroustrup.
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PP
// Chapter 2 Exercise 1
#include "std_lib_facilities.h"
int main()
{
cout << "Hello, World!\nHere we go!\n";
keep_window_open();
return 0;
}
[/code]
Output: Hello, World! Here we go! Please enter a character to exit