Factorial of Large Number in C and C++

Factorial of huge numbers contain such huge numbers of digits. For instance factorial of 100 has right around 158 digits. So there is no information type accessible to store such a long worth. In any case, we can discover factorial for huge numbers utilizing straightforward augmentation strategy that we utilized in our educational time. Beneath … Read more

Program for Pascal Triangle in C and C++

Here I have shared straightforward 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 produced is represented in beneath picture. On the off chance that you have any questions, at that point, you can ask it in the … Read more

C++ Program to Check Whether a Number is a Unique Number or Not

C++ Program to Check Whether a Number is a Unique Number or Not

A one of a kind number is a number wherein no digit is rehashed. For instance: 102452 is certainly not an extraordinary number as 2 is rehashed twice while 2374 is a novel number. So in this article, I am sharing the C++ program that checks if a number is remarkable or not. Output

Program for Armstrong Number in Java

Armstrong number is a digit number with the end goal that the whole of digits raised to the power n is equivalent to the number. For instance: 153 is Armstrong number on the grounds that here n=3 and 13+53+33=153. 120 isn’t Armstrong number on the grounds that 13+23+03!=120. Underneath I have shared a Java program … Read more