fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i,j,k=1;
  5. for(i=1;i<=4;i++)
  6. {
  7. for(j=1;j<=4;j++)
  8. {
  9. if(j<=i)
  10. {
  11. printf("%d ",k);
  12. k++;
  13. }
  14. else
  15. printf(" ");
  16. }
  17. printf("\n");
  18. }
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
1       
2 3     
4 5 6   
7 8 9 10