#include<stdio.h> main() { int i,j; int A[10][10]; for(i=0;i<=9;i++) {A[i][0]=1; for(j=0;j<=i;j++) {A[i+1][j+1]=A[i][j]+A[i][j+1]; printf("%-4d",A[i][j]); } printf("\n"); } getch(); }