Hello, world!

Discuss the following features of the sample program from lectures:

// Prints out a friendly message.
// Andrew Bennett <andrew.bennett@unsw.edu.au>
// 2017-07-24

#include <stdio.h>
#include <stdlib.h>

int main (int argc, char *argv[]) {

    // Print out the famous 'hello world' message.
    printf ("Hello, world!\n");

    return EXIT_SUCCESS;
}
In the lab, try and write a version of this *hello world* program and run it.