Created
March 26, 2015 09:37
-
-
Save talha08/c0bd85257cffb7555096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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