#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
printf("enter the value of n");
scanf("\n%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
#include<conio.h>
void main()
{
int i,j,n;
printf("enter the value of n");
scanf("\n%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment