Last active
August 29, 2015 14:16
-
-
Save huseyin/edf813cdfc225f3dc7d2 to your computer and use it in GitHub Desktop.
' * ' ile nike işareti
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
/* | |
* 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