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

Feb 1, 2015 at 4:57pm
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 Feb 1, 2015 at 5:00pm
Feb 1, 2015 at 5:01pm
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.
Feb 1, 2015 at 5:17pm
To simplify this we could just list the names of authors that don't describe the "Hello, World!" program.
Feb 1, 2015 at 6:04pm
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 Feb 1, 2015 at 6:05pm
Topic archived. No new replies allowed.