Write a C program to show the Pascal’s triangle
#include<stdio.h>
#include<conio.h>
#include<MATH.h>
void main()
{
int a,i,j,rows;
printf("\n enter the number of rows:");
scanf("%d",&rows);
for(i=0;i<rows;i++)
{
a=pow(11,i);
printf("%d",a);
printf("\n");
}
getch();
}