Important Note:Login & Check Your Email Inbox and Activate Confirmation Link |
---|
Section 107 of the Copyright Act Fair Use Contents . We are forwarding content link(s) from our website to content website & We are not serving any contents. Main Source:Google.com.All the Content PDF link(s) is/are obtained from GoogleSearch for the purpose of Education & Teaching Intention. Not for commercial purpose. Technicalsymposium.com is not liable/responsible for any copyright issues. |
---|
|
---|
C PROGRAM FOR PASCAL TRIANGLE.
void main()
{
int i=1,j,num,x=1;
clrscr();
printf("Please Enter the Number :");
scanf("%d",&num);
printf("\n\n");
printf("OUTPUT:\n");
printf("------");
printf("\n\n");
printf("The Pascal triangle is\n");
printf("**********************\n");
for(i=1;i<=num;i++)
{
for(j=1;j<=i;j++)
{
if(j==1)
{
x=1;
printf("%d",x);
}
else
{
x=(x*(i-j+1)/(j-1));
printf("%d",x);
}
}
printf("\n");
}
getch();
}
|
---|
|
---|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
![]() |
|
![]() |
---|
![]() |
Official Contact: +91-9245556793 (Whatsapp Message / SMS / Voice Call)Our Expert team is ready to answer all your questions immediately-Feel free to speak in Tamil/English. (Example:Events info/Lecture Notes/Off-Campus & All Jobs/Projects & All education information) Working hrs (IST): (Morning: 10:00AM-3:00 PM) and (Evening:5:00 PM to 10:00 PM)
|
---|