English

Write a Program to Generate Following Patterns. 1. 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 - Structured Programming Approach

Advertisements
Advertisements

Question

Write a program to generate following patterns. 

1. 1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Solution

#include <stdio.h> 
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d\t",j);
}
printf("\n");
}
getch();
}
Output:
1
1 2 1 2 3
1 2 3 4
1 2 3 4 5
shaalaa.com
Control Structures - Nested Control Structure
  Is there an error in this question or solution?
2018-2019 (December) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×