PROCEDURE:- 1.enter the number of rows n 2.set i to 1 3.repeat steps 4 to 8 until i<=n 4.set j to 1 5.repeat steps 6 and 7 until j<=i 6.print the value of j 7.increment j by 1 8. go to new line ,increment i by 1 CODE:- # include<stdio.h> void main() { int i,j,n; printf(“enter value for n”); scanf(“%d”,&n); for(i=1;i<=n;i++) { for(j=1;j<=i; j++) { printf(“ %3d”,j); } printf(“\n”); } } Input:- enter value for n 3 Output:- 1 2 3 3