Translate

Labels

Showing posts with label PASCAL'S TRIANGLE. Show all posts
Showing posts with label PASCAL'S TRIANGLE. Show all posts

Saturday, 8 June 2013

PASCAL'S TRIANGLE

#include<stdio.h>
#include<conio.h>
main()
{
int b,p,q,r,x;
clrscr();
printf("Enter no.of rows:");
scanf("%d",&r);
b=1;
q=0;
printf("\n PASCAL'S TRIANGLE \n");