There are 21 people in a room. They have to form groups of 3
people each. How many combinations are possible? Write a C
program to print the same.
Answer / jeeva kumar
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,n,a,b,c=1,d=1;
printf("Enter the tot no of people");
scanf("%d", &n);
printf("In how many they have to form group");
scanf("%d", &a);
b=a;
for(i=0;i<b;i++)
{
c*=n;
d*=a;
n--;
a--;
}
printf("%d",c/d);
getch();
}
| Is This Answer Correct ? | 7 Yes | 0 No |
What does c mean in standard form?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
what is default constructor?
What are keywords in c with examples?
what type of errors are checked during compilation
How would you sort a linked list?
Why static variable is used in c?
Should I learn c before c++?
How can I generate floating-point random numbers?
What the advantages of using Unions?
hi send me sample aptitude papers of cts?
Why does everyone say not to use scanf? What should I use instead?