Solution for Exercise 4-3

ex0403

#include <stdio.h>

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

Output

Hickory, dickory, dock,
The mouse ran up the clock.

Notes

* The puts() function displays text. That's all it does.