Solution for Exercise 4-13

ex0413

#include <stdio.h>

int main()
{
    printf("Hickory, dickory, dock,\n");
    printf("The mouse ran up the clock.\n");
    printf("The clock struck one,\n");
    printf("The mouse ran down,\n");
    printf("Hickory, dickory, dock.\n"); 
    return(0);
}

Notes

* If you wanted to add a blank line between each line of output, specify two newlines at the end of the string, \n\n.