/* Chapter 1 * Program: Project1.c * Purpose: Write a short program that uses both functions puts and printf. * Add comments to explain how they each work. * Properly indent the code. * Add a final comment about how each handeles newlines. * Attach a copy fo the program to your assignment. * Author: John Stile * Date: 20070320 */ #include // include the functions fro the library stdio.h int main(void) // main takes no agumnets, returns an int. { puts("Programming in C is SO easy."); // puts: Prints string between quotes, and includes newline. printf("C almost writes it self, "); // printf: Prints sting between quotes, printf("and some day I'll be able to write it too.\n"); // printf: newline must be explicit. return 0; // return an int equal 0 }