// To generate the output of type
//1
//1 2
//1 2 3
#include
#include
void main()
{
clrscr();
int i,j,n;
printf("enter the number of rows:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
printf("\n");
for(j=1;j<=i;j++)
{
printf("%d",j);
}
}
getch();
}
Algorithm
· Start
· Declare i, j, n as integer
· Write("the number of rows")
· Read(“the number of rows”)
· for(i=1;i<=n;i++)
· Write("in next line")
· for(j=1;j<=i;j++)
· Read("the value of j”)
· Stop
c example programs to amateur programmers
ReplyDeletec sample code Add function to the Ternary operator