C Program to find nCr using RecursionRajesh SinghAug 16, 20221 min readC Program to find nCr: #include<stdio.h>#include<conio.h>int fact(x){int i, f=i;for(i=1;i<=x;i++){f=f*i;}return(f);}void main(){int n,r, A;printf("Enter the no.: ");scanf("%d%d", &n,&r));A=fact(n)/fact(r)*fact(n-r);printf(%d",A);getch();}Output:Enter the no.: 2 12
IOT O Level Practical Questions with AnswersDownload NIELIT IOT O Level Practical questions with answers written by Career Bodh Sansthan located in Thakurdwara Moradabad.
NIELIT CCC MCQ Questions with AnswersQ1. Which protocol is used to upload and download file? (A) TCP (B) HTTP (C) FTP (D) SMTP Ans: C Q2. How many is Number of digits in a Visa Card number? (A) 15 (B) 16 (C) 18 (D) 19 Ans: B Q3. What is
Comments