
#include <stdio.h>

int main() 
{
    printf( "hello, world\n" );
}


/*
Discuss:

- compilation
    (Windows)
    - MinGW (http://www.mingw.org/)
    - SCITE setup (http://www.scintilla.org/SciTE.html)
                  (installer: http://gisdeveloper.tripod.com/scite.html)
     "Options" --> "Open cpp properties"
      Change line from:
        cc=g++ -pedantic -Os -fno-exceptions -c $(FileNameExt) -o $(FileName).o
      to:
        cc=gcc -pedantic -Os -fno-exceptions $(FileNameExt) -o $(FileName).exe

- C program: functions & variables
- main: special - program begins executing
- character string (string constant)
- \n - escape sequence
- printf: formatted print
- see 02_hello.c

Exercises (page 8)

 */