Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Strong Number in C

Here you will get program for strong number in C. What is Strong Number? A number in which the sum of factorial of individual digits is equal to the number is called strong number. For example, 145 is a strong number because 145=(!1)+(!4)+(!5)=1+24+120=145 The below C program will check whether a given number in strong …

Strong Number in C Read More »