You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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!"); }
The text was updated successfully, but these errors were encountered: