Solution for Exercise 4-4

ex0404

#include <stdio.h>

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

Notes

* The obvious solution to make the last line rhyme would be "Hickory, dickory, done." I'll give you credit if you came up with something more creative.

* Or you could change the fourth line to rhyme with the third. I'm not picky.