0
854views
WAP to print following pattern for n lines

enter image description here

Subject : Structured Programming Approach

Title : Control Structures

Difficulty : Medium

1 Answer
0
7views

Program:

#include<stdio.h>

#include<conio.h>

void main()

{

    int i,j,n;

    clrscr();

    printf(“Enter the number of lines:”);

    scanf(“%d”,&n);

    for(i=1;i<=n;i++)

    {

        for(j=1;j<=n-i;j++)

        {

            printf(“ “);

        }

        for(j=1;j<=i;j++)

        {

            printf(“%d”,j);

        }

        for(j=i-1;j>=1;j--)

        {

            printf(“%d”,j);

        }

        printf(“\n”);

    }

    getch();

}

Output:

enter image description here

Please log in to add an answer.