Skip to content

Instantly share code, notes, and snippets.

@talha08
Created March 26, 2015 09:37
Show Gist options
  • Save talha08/c0bd85257cffb7555096 to your computer and use it in GitHub Desktop.
Save talha08/c0bd85257cffb7555096 to your computer and use it in GitHub Desktop.
//Author: talha
#include<stdio.h>
int main()
{
int i,j;
for(i=0;i<10;i++){
for(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