मराठी

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

प्रश्न

Write a program to generate following patterns. 

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

उत्तर

#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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2018-2019 (December) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×