/* Calculate Permutation and Combination (nCr and nPr) Using Function */ #include<stdio.h> #include<conio.h> void main()
Author: Mohit Arora
Hi, I am Mohit Arora , a passionate blogger and addicted reader. Currently working as a Technology Analyst in INFOSYS Ltd.
You can check my other blog - CatchUpdates.com
You can connect with me on Instagram Or Quora And Linkedin as well.
/* Fibonacci series using recursion */ #include<stdio.h> #include<conio.h> void main() {
/* Program to draw pyramid of numbers displaying following Pattern */ /* 1 2 3 4 5 6 7 8 9 10 */
/* Q. program to produce the following form of Floyd’s Triangle. 0 10 010 1010 */ #include<stdio.h> #include<conio.h> void main()
/* This program read n value into array calculate reverse array and display all data in reverse order */ #include<stdio.h> #include<conio.h> void main() {
/* HPSORT.C : PROGRAM TO CREATE A HEAP AND TO SORT A HEAP, HEAP IS STORED IN AN ARRAY */ #include<stdio.h> #include<conio.h> void crheap(int [], int); void processheap(int [],int);