How to do an Armstrong no. Program
Answers
Answered by
1
Let's see the c program to check Armstrong Number in C.
- #include<stdio.h>
- int main()
- {
- int n,r,sum=0,temp;
- printf("enter the number=");
- scanf("%d",&n);
- temp=n;
- while(n>0)
Similar questions
Math,
1 month ago
Business Studies,
2 months ago
Math,
2 months ago
English,
9 months ago
Chemistry,
9 months ago