Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 17, 2017 17:57
Show Gist options
  • Save ThePratikSah/9e4229c4803ca9b1b4b442e134e7ee42 to your computer and use it in GitHub Desktop.
Save ThePratikSah/9e4229c4803ca9b1b4b442e134e7ee42 to your computer and use it in GitHub Desktop.
main() {
int row, col;
for ( row = 1 ; row <= 5 ; ++row) {
for ( col = 1 ; col <= 5 ; ++col) {
printf("*");
}
printf("\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment