TITLE: Canonical Hello World Example
AUTHOR: Chuck McManis
LAST UPDATE: 28-Sep-2013

Description

This is the canonical “hello world” example, made famous by Kernigan and Ritcheie’s book “The C Language”

The Source Code

#include <stdio.h>

main()
{
    printf("hello, world\n");
}

License

Creative Commons License

This work is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License. You are free to play around with it and modify it but you are not licensed to use it for commercial purposes. Click the link above for more details on your rights under this license.