Skip to content

Instantly share code, notes, and snippets.

@Lispython
Created January 4, 2012 19:20
Show Gist options
  • Save Lispython/1561562 to your computer and use it in GitHub Desktop.
Save Lispython/1561562 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
int i, n=20;
for(i = 0 ; i<n ; i--)
printf("*");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment