If a set of statements inside squigly brackets ends with a printf statement and the closing squigly bracket on the same line, the closing bracket will be replicated twice
EXAMPLE:
if(foo=bar)
{
printf("Yay!"); }
YIELDS:
if(foo=bar)
{
printf("Yay!"; }
fprintf(outfile, "Yay!"); }