Write a C program to Find all possible permutations in which 'n' people can occupy 'r' seats in a theater August 18, 2020 Add Comment Edit Write a C program to Find all possible permutations in which 'n' people can occupy 'r' seats in a theater Program:-...
Write a C program to find the number of days in a given month of a given year August 18, 2020 Add Comment Edit Write a C program to find the number of days in a given month of a given year Program:- #include<stdio.h> int main()...
Write a C program to convert a given number to words August 18, 2020 Add Comment Edit Write a C program to convert a given number to words Program:- #include <stdio.h> #include <string.h> void co...
Write a C program to find the quadrant in which the given coordinates lie August 18, 2020 Add Comment Edit Write a C program to find the quadrant in which the given coordinates lie Program:- #include <stdio.h> int main() {...
Write a C program to find the maximum number of handshakes August 18, 2020 Add Comment Edit Write a C program to find the maximum number of handshakes Program:- #include int main() { //fill the code int num; ...
Write a C program to Convert a number from octal to binary August 18, 2020 Add Comment Edit Write a C program to Convert a number from octal to binary Program:- #include <stdio.h> #include <math.h> lo...
Write a C program to Convert Octal to Decimal number August 18, 2020 Add Comment Edit Write a C program to Convert Octal to Decimal number Program:- #include <stdio.h> #include <math.h> long int...