/* This is the very first program anyone writes when learning any language. To compile: gcc -o 01-first 01-first.c To run: ./01-first C. Andrews 2015-02-15 */ #include /* Every application must have a main function. argc: the number of arguments supplied on the command line argv: an array of strings containing the command line arguments returns: the error code [0 is success] */ int main(int argc, char * argv[]){ printf("Look ma, I can print things out!\n"); return 0; }