Skip to content

Instantly share code, notes, and snippets.

@Blackburn29
Created May 13, 2015 20:33
Show Gist options
  • Save Blackburn29/0c458e5f8a826e8bb4c5 to your computer and use it in GitHub Desktop.
Save Blackburn29/0c458e5f8a826e8bb4c5 to your computer and use it in GitHub Desktop.
#include<stdio.h>
main()
{
int i,j;
for(i = 0; i <= 9; i++) {
for(j = 0; j < i; j++)
printf("%d", i);
printf("\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment