The names of various authors approaches to explaining the "Hello, World!" program

The purpose of this thread is to name various authors, and if possible, their approaches, to describing the "Hello, World!" program. Simply type the names of all the authors you know.
1
2
3
4
5
6
#include "std_lib_facilities.h"
int main()
{
cout << "Hello, World!\n";
return 0;
}
Last edited on
Where did you get your hello world from?

Most would simply #include <iostream>

as far as listing the authors, I think this is better suited in the lounge.
To simplify this we could just list the names of authors that don't describe the "Hello, World!" program.
This hello world is from Programming Principles and practice using C++ 2nd edition by Stroustrup, there are others?

Beko, what do you mean
Last edited on
Topic archived. No new replies allowed.