a program in c  to check if a given number is a strong number or not using a  while loop.

Output
Output:
Enter the number: 145
145 is a strong number
Enter the number: 112
112 is not a strong number


Explanation
1.In this C program, we read the exact value using the variable "number".
2.Find the digit of number and the factorial of each digit.
3.Calculate the factorial sum of each digit.
4.If the sum is equal to the number, then print "The number is a strong number".
5.If the sum is not equal to the number, then print "The number is not a strong number".


Previous :-->> 11.Write a program in c programming to print the sum of all odd numbers between two given numbers using a while loop.
 -->> NEXT: 13. Write a program in c language to print the pattern of a diamond using a for loop.
-->>ALL Loops Assignments in c