Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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