Skip to content

Instantly share code, notes, and snippets.

@dmlebron
Last active June 6, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmlebron/ad7b62da22c65841ad4b81570b1e810e to your computer and use it in GitHub Desktop.
Save dmlebron/ad7b62da22c65841ad4b81570b1e810e to your computer and use it in GitHub Desktop.
int main(void)
{
for (int i=0; i < 3; i++)
{
for (int j=0; j<=i; j++)
{
printf("#");
}
printf("\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment