Skip to content

Instantly share code, notes, and snippets.

@cosinekitty
Last active May 18, 2020 23:44
Show Gist options
  • Select an option

  • Save cosinekitty/426840f890d356030949a25b816f41b3 to your computer and use it in GitHub Desktop.

Select an option

Save cosinekitty/426840f890d356030949a25b816f41b3 to your computer and use it in GitHub Desktop.
for (i=0; i<3; ++i)
{
for (j=0; j<3; ++j)
{
if (a[i][j] < 0)
goto stop_printing;
printf(" %9d", a[i][j]);
}
printf("\n");
}
stop_printing:
/* ... remaining code ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment