/* Thanks to Brian Kernighan, 'Hello World' is the
traditional first C program. It became legendary with the publication of "The C
Programming Language" by Kernighan and Ritchie (1978). Now, Hello World is the
canonical test of any programming language. */
#include <stdio.h> // C language module providing Input/Output facilities
int main(void) // main() is automatically called to
start a C program
{
printf("Hello, World!\n"); // output greeting
printf("This is yourNameHere.\n"); // output your name
return 0; // return to operating system
}