Computer Science, asked by nanydas7394, 23 days ago

How to do an Armstrong no. Program

Answers

Answered by MrsHangover
1

Let's see the c program to check Armstrong Number in C.

  1. #include<stdio.h>
  2. int main()
  3. {
  4. int n,r,sum=0,temp;
  5. printf("enter the number=");
  6. scanf("%d",&n);
  7. temp=n;
  8. while(n>0)

 \\

Similar questions