Solution for Exercise 4-14

ex0414

#include <stdio.h>

int main()
{
    printf("\"Hey,\" said the snail, \"I said no salt!\"\n");
    return(0);
}

Notes

* The double quote need to be escaped because the double quote ends a string.

* I hope you didn't forget the newline character at the end of the string!