Solution for Exercise 4-6

ex0406

#include <stdio.h>

int main()
{
    puts("The secret password is:");
    puts("Spatula.");
    return(0);
}

Notes

* Again, feel free to just modify the original project; you don't have to create new projects for each modification.

* I hope you remembered to remove the */ part of the comment!

* Commenting out lines of code is something you may find yourself doing frequently, especially when you start to debug your code.