0
831views
Write a program to display the following pattern using nested for loop

enter image description here

Subject : Structured Programming Approach

Title : Control Structures

Marks : 6M

1 Answer
0
0views
#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("*");
    }
    printf("\n");
}
}
Please log in to add an answer.