<>

Print Diamond C Program


C Program which prints the diamond of stars Like this:

    *
  ***
*****
  ***
    *

#include <stdio.h>
 main()
{
    int n, c, k, space = 1;

    printf("Enter number of rows: ");
    scanf("%d", &n);

    space = n - 1;

    for (k = 1; k <= n; k++)
    {
        for (c = 1; c <= space; c++)
            printf(" ");

        space--;

        for (c = 1; c <= 2*k-1; c++)
            printf("*");

        printf("\n");
    }

    space = 1;

    for (k = 1; k <= n - 1; k++)
    {
        for (c = 1; c <= space; c++)
            printf(" ");

        space++;

        for (c = 1 ; c <= 2*(n-k)-1; c++)
            printf("*");

        printf("\n");
    }
}

Also by Making Function of it:

#include <stdio.h>
void diamond(int);
main()
{
    int n;

    printf("Enter number of rows: ");
    scanf("%d", &n);

    diamond(n);
}
void diamond(int n)
{
    int c, k, space = 1;
    space = n - 1;

    for (k = 1; k <= n; k++)
    {
        for (c = 1; c <= space; c++)
            printf(" ");

        space--;

        for (c = 1; c <= 2*k-1; c++)
            printf("*");

        printf("\n");
    }

    space = 1;

    for (k = 1; k <= n - 1; k++)
    {
        for (c = 1; c <= space; c++)
            printf(" ");

        space++;

        for (c = 1 ; c <= 2*(n-k)-1; c++)
            printf("*");

        printf("\n");
    }
}


Rate this posting:
{[['']]}

0 comments:

Post a Comment

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.

 
TOP