Solution for Exercise 2-1

ex0201

#include <stdio.h>

int main()
{
    puts("Greetings, human.");
    return 0;
}

Notes

* This type of code is more along the lines of the traditional "first program" you see in just about every dang doodle programming book ever written. The text displayed is normally Hello, world, but I find that dull.