Showing posts with label c programming. Show all posts
Showing posts with label c programming. Show all posts

Tuesday, 31 May 2016

CREATING STARS IN C LANGUAGE

I decided to share these codes because of
the difficulties I faced when I tried
writing them.
You should try doing it yourself but in
case of any difficulty,
feel free to
consult the codes below.
NOTE: All written in C language



     *
    ***
  *****
 *******
*********
code:
#include <stdio.h>
int main() {
    int i, j, k;
    for(i=1;i<=5;i++) {
        for(j=i;j<5;j++) {
             printf(" ");
        }
           for(k=1;k<(i*2);k++) {
                 printf("*");
           }
       printf("\n");
   }
 return 0;
}