Solution for Exercise 4-9

ex0409

#include <stdio.h>

int main()
{
    puts("This program goes BOOM!")
    return(0);
}

Notes

* By adding the missing double quote, you reduce the error count from the compiler considerably. The program still errors, but the error message is a bit more precise. Here's what I saw:

* See how specific the above message is? It really helps you hone in on where the problem could be.