Feb 1, 2015 at 4:57pm UTC
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 UTC
Feb 1, 2015 at 5:01pm UTC
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 UTC
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 UTC
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 UTC