C Programming
Perfect Number in C
Here you will get a program for the perfect number in C. A perfect number is a positive number which is equivalent to the entirety of every one of its divisors barring itself. For instance: 28 is a perfect number as 1 + 2 + 4 + 7 + 14 = 28. 15 isn’t perfect … Read more
Strong Number in C
Here you will get a program for a strong number in C. What is Strong Number? A number where the entirety of factorial of individual digits is equivalent to the number is called a strong number. For instance, 145 is a strong number in light of the fact that 145=(!1)+(!4)+(!5)=1+24+120=145 The beneath C program will … Read more
Factorial of Large Number in C and C++
Here you will get the program to discover factorial of an enormous number in C and C++. Factorial of huge numbers contain such a large number of digits. For instance factorial of 100 has just about 158 digits. So there is no information type accessible to store such a long worth. Yet, we can discover … Read more
Program for Pascal Triangle in C and C++
Here I have shared basic program for pascal triangle in C and C++. Fundamentally Pascal’s triangle is a triangular exhibit of binomial coefficients. A model for how the pascal triangle is created is outlined in underneath picture. On the off chance that you have any questions, at that point, you can ask it in the … Read more