Solution for Exercise 3-1

ex0301

#include <stdio.h>

main ()
{
    printf("4 times 5 is %d\n",4*5);
    return(0);
}

Notes

* This source code sample is built upon in the Chapter, step-by-step. What you see above is the final result.