35 C Program to Check whether a given Number is Armstrong
Posted by Superadmin on December 23 2015 03:13:23
This C Program checks whether a given number is armstrong number. An Armstrong number is an n-digit base b number such that the sum of its (base b) digits raised to the power n is the number itself. Hence 153 because 1^3 + 5^3 + 3^3 = 1 + 125 + 27 = 153.
Here is source code of the C Program to check whether a given number is armstrong number.
The C program is successfully compiled and run on a Linux system. The program output is also shown below.

/*
* C Program to Check whether a given Number is Armstrong
*/
#include <stdio.h>
#include

void main()
{
int number, sum = 0, rem = 0, cube = 0, temp;

printf ("enter a number");
scanf("%d", &number);
temp = number;
while (number != 0)
{
rem = number % 10;
cube = pow(rem, 3);
sum = sum + cube;
number = number / 10;
}
if (sum == temp)
printf ("The given no is armstrong no");
else
printf ("The given no is not a armstrong no");
}

Output:
$ cc pgm41.c -lm
$ a.out
enter a number370
The given no is armstrong no

$ a.out
enter a number1500
The given no is not a armstrong no