what is an armstrong numbers code example
Example 1: armstrong number
sum of cubes of the digits
Example 2: armstrong number
temp=n;
while(n>0)
{
r=n%10;
sum=sum+(r*r*r);
n=n/10;
}
if(temp==sum)
printf("armstrong number ");
else
printf("not armstrong number");
return 0;