/* Chapter 1 * Program: Project2.c * Purpose: Write a program that runs the Linux or UNIX date utility * and output the message" Today has gone well. * Properly comment and indent the code. * Author: John Stile * Date: 20070320 */ #include // include the functions fro the library stdio.h int main(void) // main takes no agumnets, returns an int. { system("date"); // system: Delivers contents between quotes unmodified to the shell for exectuion. printf("Today has gone well.\n"); // printf: Prints string between quotes. New line is explicit. return 0; // return an int equal 0 }