About Me

My photo
Raipur, Chhattisgarh, India
Hi , I am Amit Thakur. I have worked as a QA Engineer for two years and as a Java Developer for one year in NIHILENT TECHNOLOGIES PVT. LTD., Pune.Currently I am working as DEAN (Research & Development) in Bhilai Institute of Technology, Raipur.

Saturday, December 10, 2011

Pattern Printing 8

#include


void main()
{
    int n, c, k, space, r;

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

    space = 1;
    r = n-1;

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

    printf("\n");

    for ( k = 2 ; k <= n ; k++ )
    {

        for( c = 1 ; c <= r ; c++ )
            printf("*");

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

        space = 2*k-1;

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

        printf("\n");
    }
    getch();
    return 0;
}


--------------------------------------
output:-
Enter number of rows
7
*************
******  ******
*****      *****
****          ****
***              ***
**                  **
*                      *















No comments: