In this article we will learn to implement a C program for strong number. A C program is provided below to check whether the given number is strong number or not. Examples of strong numbers: 1, 2, 145, etc. Program is as follows: #include<stdio.h> int fact(int n) { if(n==0 || n==1) return 1; […]