Skip to content

Instantly share code, notes, and snippets.

@SohanChy
Last active August 29, 2015 14:23
Show Gist options
  • Save SohanChy/76391c23326a6ced8f44 to your computer and use it in GitHub Desktop.
Save SohanChy/76391c23326a6ced8f44 to your computer and use it in GitHub Desktop.
Basic Star Printing
#include <stdio.h>
int main()
{
int input;
do {
printf("input please");
scanf("%d",&input);
}
while (input<=0);
int x;
for(x=input;x>0;x=x-1)
{
int i;
for(i=x;i>0;i=i-1)
{
printf("*");
}
printf("\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment