In this video, we will write a C program to check Strong Number.
For checking the strong number we will take input from the user and initialize the sum of factorials as 0.
For every digit d, do the following Add d! to the sum of factorials If the sum of factorials is the same as a given number, return true. Else return false.