Skip to content

Instantly share code, notes, and snippets.

@huseyin
Last active August 29, 2015 14:16
Show Gist options
  • Save huseyin/edf813cdfc225f3dc7d2 to your computer and use it in GitHub Desktop.
Save huseyin/edf813cdfc225f3dc7d2 to your computer and use it in GitHub Desktop.
' * ' ile nike işareti
/*
* The Practice of Programming -> Kerngihan -> Alıştırmalar
* Alıştırma -> '*' ile Nike işareti yapma
*/
#include <stdio.h>
main(void) {
int i;
for ( i=0; i<=4; i++ )
printf(" ");
printf("*\n");
for ( i=0; i<=3; i++ )
printf(" ");
printf("*\n");
printf("*");
for ( i=0; i<=1; i++ )
printf(" ");
printf("*\n");
for ( i=0; i<=1; i++ )
printf(" ");
printf("*\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment