Exercise[6B(i)]
Write a program to produce the following output:
1
2 3
4 5 6
7 8 9 10 */
#include<stdio.h>
int main()
{
int i,j,k,count=1;
for(i=1;i<=4;i++)
// for loop for all the rows =4
{
printf("*");
}
// add element after space
for(k=1;k<=i;k++)
{
printf("%d",count);
count++;
printf("\n");
}
return 0;
}