Skip to main content

star pattern-6 c language

for n=5


          1     

        1 2 1   

     1 2 3 2 1

  1 2 3 4 3 2 1

1 2 3 4 5 4 3 2 1


#include <stdio.h>
int main()
{
    int numk;
    printf("Enter the number of row\n");
    scanf("%d", &num);
    for (int row = 1row <= numrow++)
    {
        k = 0;
        for (int column = 1column <= (num * 2) - 1column++)
        {
            if (column <= num)
            {

                if (column >= (num + 1) - row && column <= (num - 1) + row)
                {
                    k++;
                    printf("%d"k);
                }
                else
                {
                    printf(" ");
                }
            }
            else
            {
                if (column >= (num + 1) - row && column <= (num - 1) + row)
                {
                    k--;

                    printf("%d"k);
                }
                else
                {
                    printf(" ");
                }
            }
        }

        printf("\n");
    }

    return 0;
}

Comments

Popular posts from this blog

C Program to Calculate Difference Between Two Time Periods

  Calculate Difference Between Two Time Periods # include <stdio.h> struct TIME { int seconds; int minutes; int hours; }; void differenceBetweenTimePeriod (struct TIME t1, struct TIME t2, struct TIME *diff) ; int main () { struct TIME startTime , stopTime , diff ; printf ( "Enter the start time. \n" ); printf ( "Enter hours, minutes and seconds: " ); scanf ( "%d %d %d" , &startTime.hours, &startTime.minutes, &startTime.seconds); printf ( "Enter the stop time. \n" ); printf ( "Enter hours, minutes and seconds: " ); scanf ( "%d %d %d" , &stopTime.hours, &stopTime.minutes, &stopTime.seconds); // Difference between start and stop time differenceBetweenTimePeriod(startTime, stopTime, &diff); printf ( "\nTime Difference: %d:%d:%d - ...

C Program to Display its own Source Code as Output

  C program to display its own source code # include <stdio.h> int main () { FILE *fp; int c;     // open the current input file fp = fopen(__FILE__, "r" ); do { c = getc(fp); // read character putchar (c); // display character } while (c != EOF); // loop until the end of file is reached   fclose(fp); return 0 ; }

C Program to Find ASCII Value of a Character

  Program to Print ASCII Value # include <stdio.h> int main () { char c; printf ( "Enter a character: " ); scanf ( "%c" , &c); // %d displays the integer value of a character // %c displays the actual character printf ( "ASCII value of %c = %d" , c, c); return 0 ; } Output Enter a character: G ASCII value of G = 71