C Basic
C Interview Programs
- C Interview Programs
- C Abundant Number
- C Amicable Number
- C Armstrong Number
- C Average of N Numbers
- C Automorphic Number
- C Biggest of three numbers
- C Binary to Decimal
- C Common Divisors
- C Composite Number
- C Condense a Number
- C Cube Number
- C Decimal to Binary
- C Decimal to Octal
- C Disarium Number
- C Even Number
- C Evil Number
- C Factorial of a Number
- C Fibonacci Series
- C GCD
- C Happy Number
- C Harshad Number
- C LCM
- C Leap Year
- C Magic Number
- C Matrix Addition
- C Matrix Division
- C Matrix Multiplication
- C Matrix Subtraction
- C Matrix Transpose
- C Maximum Value of an Array
- C Minimum Value of an Array
- C Multiplication Table
- C Natural Number
- C Number Combination
- C Odd Number
- C Palindrome Number
- C Pascalβs Triangle
- C Power of 2
- C Power of 3
- C Pronic Number
- C Perfect Number
- C Perfect Square
- C Prime Factor
- C Prime Number
- C Smith Number
- C Strong Number
- C Sum of Array
- C Sum of Digits
- C Swap Two Numbers
- C Triangular Number
C Program to Check Armstrong Number
Photo Credit to CodeToFun
π Introduction
In the realm of programming, solving mathematical problems is a common task. One such interesting problem is checking whether a given number is an Armstrong number.
Armstrong numbers, also known as narcissistic numbers or pluperfect digital invariants, are numbers that are the sum of their own digits each raised to the power of the number of digits.
In this tutorial, we will explore a C program designed to check whether a given number is an Armstrong number. The program involves calculating the sum of the digits raised to the power of the number of digits and comparing it with the original number.
π Example
Let's delve into the C code that accomplishes this task.
#include <stdio.h>
#include <math.h>
// Function to check if a number is an Armstrong number
int isArmstrong(int number) {
int originalNumber, remainder, n = 0, result = 0;
// Assign the number to a temporary variable
originalNumber = number;
// Count the number of digits
while (originalNumber != 0) {
originalNumber /= 10;
++n;
}
// Assign the number to the originalNumber variable
originalNumber = number;
// Calculate the sum of nth power of individual digits
while (originalNumber != 0) {
remainder = originalNumber % 10;
result += pow(remainder, n);
originalNumber /= 10;
}
// Check if the result is equal to the original number
if (result == number)
return 1; // It is an Armstrong number
else
return 0; // It is not an Armstrong number
}
// Driver program
int main() {
// Replace this value with the number you want to check
int number = 153;
// Call the function to check if the number is Armstrong
if (isArmstrong(number))
printf("%d is an Armstrong number.\n", number);
else
printf("%d is not an Armstrong number.\n", number);
return 0;
}
π» Testing the Program
To test the program with different numbers, modify the value of number in the main program.
153 is an Armstrong number.
π§ How the Program Works
- The program defines a function isArmstrong that takes an integer number as input and checks whether it is an Armstrong number.
- Inside the main program, replace the value of number with the desired number you want to check.
- The program calls the isArmstrong function and prints the result.
π Between the Given Range
Let's take a look at the C code that checks for Armstrong numbers in the specified range.
#include <stdio.h>
#include <math.h>
// Function to check if a number is Armstrong
int isArmstrong(int num) {
int originalNum, remainder, n = 0, result = 0;
originalNum = num;
// Count the number of digits
while (originalNum != 0) {
originalNum /= 10;
++n;
}
originalNum = num;
// Calculate the sum of nth power of each digit
while (originalNum != 0) {
remainder = originalNum % 10;
result += pow(remainder, n);
originalNum /= 10;
}
// Check if the number is Armstrong
return (result == num);
}
// Driver program
int main() {
// Define the range
int start = 1, end = 200;
printf("Armstrong numbers in the range %d to %d:\n", start, end);
for (int i = start; i <= end; ++i) {
if (isArmstrong(i)) {
printf("%d ", i);
}
}
printf("\n");
return 0;
}
π» Testing the Program
Armstrong numbers in the range 1 to 200: 1 2 3 4 5 6 7 8 9 153
Compile and run the program to see the Armstrong numbers in the specified range.
π§ How the Program Works
- The program defines a function isArmstrong that checks whether a given number is an Armstrong number.
- Inside the function, it calculates the number of digits and then computes the sum of each digit raised to the power of the number of digits.
- The main function tests this function for numbers in the range from 1 to 200 and prints the Armstrong numbers.
π§ Understanding the Concept of Armstrong Number
Before delving into the code, let's understand the concept behind Armstrong numbers. An Armstrong number is a number that is the sum of its own digits each raised to the power of the number of digits.
For example, 153 is an Armstrong number because 1^3 + 5^3 + 3^3 = 153.
π’ Optimizing the Program
While the provided program is straightforward, consider exploring and implementing alternative approaches or optimizations for checking Armstrong numbers.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (C Program to Check Armstrong Number) please comment here. I will help you immediately.