C program to check whether a number is armstrong number or not
Example Input Input number: 371 Output 371 is armstrong number An Armstrong number is a n-digit number that is equal to the sum of the nth power of its digits. For example –6 = 61 = 6371 = 33 + 73 + 13 = 371
