C Program To Check Amstrong Number

ALGORITHM:       1. Start      2. Declare variables       3. Read the Input  number.     4. Calculate sum of cubic of individual digits of the input.      5. Match the result with input number.      6. If match, Display the given number is Armstrong otherwise not.      7. Stop. Program: #include <stdio.h> #include <math.h> void … Continue reading C Program To Check Amstrong Number