The following code shows how to Find Whether a Number is an Armstrong Number or Not in C.
//Find Whether a Number is an Armstrong Number or Not
#include <stdio.h>
#include <math.h>
int main()
{
int mynum, temp, digitsum=0, rem, dv, t=0;
printf("Enter a number: ");
scanf("%d", &mynum);
temp=mynum;
while(temp!=0)
{
temp=temp/10;
t++;
}
temp=mynum;
while(temp!=0)
{
rem=temp%10;
digitsum+=pow(rem, t);
temp=temp/10;
}
if(digitsum==mynum)
{
printf("%d is an Armstrong number!", mynum);
}
else
{
printf("%d is not an Armstrong number!", mynum);
}
return 0;
}
Output
Enter a number: 1634
1634 is an Armstrong number!
Further Reading
50+ C Programming Interview Questions and Answers
C Program to Find Factorial of a Number
- AI
- Android
- Angular
- ASP.NET
- Augmented Reality
- AWS
- Bioinformatics
- Biometrics
- Blockchain
- Bootstrap
- C
- C#
- C++
- Cloud Computing
- Competitions
- Courses
- CSS
- Cyber Security
- Data Science
- Data Structures and Algorithms
- Data Visualization
- Datafication
- Deep Learning
- DevOps
- Digital Forensic
- Digital Trust
- Digital Twins
- Django
- Docker
- Dot Net Framework
- Drones
- Elasticsearch
- ES6
- Extended Reality
- Flutter and Dart
- Full Stack Development
- Git
- Go
- HTML
- Image Processing
- IoT
- IT
- Java
- JavaScript
- Kotlin
- Latex
- Machine Learning
- MEAN Stack
- MERN Stack
- Microservices
- MongoDB
- NodeJS
- PHP
- Power Bi
- Projects
- Python
- Quantum Computing
- React
- Robotics
- Rust
- Scratch 3.0
- Shell Script
- Smart City
- Software
- Solidity
- SQL
- SQLite
- Tecgnology
- Tkinter
- TypeScript
- VB.NET
- Virtual Reality
- Web Designing
- WebAssembly
- XML