Write A Program To Check Armstrong Number
Write A Program To Check Armstrong Number
Armstrong Number
Using C
Programming”
Presenter :TAWJID IPSAN NOUF (1031)
AL FAISAL EMON(1030)
Course name : BCP
What is an Armstrong number? An
Armstrong number is a number that is equal
to the sum of its digits, each raised to the
power of the number of digits in the number.
Example:
Input: 153
Digits: 1, 5, 3
Sum: 13+53+33=153
Output: "Armstrong Number"
C Code (Main+Function)
Fig 1
Result