Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programming Language

Armstrong number in c

write a program in c to check a Armstrong number in c

admin by admin
November 12, 2022
Reading Time:2min read
0

RELATED POSTS

Program to find out code of grade and percentage calculator in Java

Program to find out the grade and percentage calculator in cpp

Program to find out the grade and percentage calculator in c

Hello Coding Students welcome to my programming shortcut
Today write a program to check a number is an Armstrong number or not in c .

What are Armstrong numbers ?

Armstrong number is a number that is equal to the sum of the cube of each digit number
Example of Armstrong number
153=
1^3=1
5^3=125
3^3=9
1+125+9=153
So 153 is an Armstrong number
#include<stdio.h>
int main(void)
{
    int num,temp,cube,d,sum;
    printf(“Enter a number :\n”);
    scanf(“%d”%num);
        temp=num;
        sum=0;
        while(n>0)  /*inner loop to calculate sum of cube of digits*/
        {
            d=n%10;
            n/=10;
            cube=d*d*d;
            sum=sum+cube;
        }/*End of while loop*/
        num=temp;
        if(num==sum){
            printf(” %d is a armstrong number”,num)
        }else{
            printf(“%d is not armstrong number, Please try other number”,num);
        }
    return 0;
}
output
1st run
Enter a number: 123
123 is not Armstrong number, Please try another number
2nd run
Enter a number: 153
153 is an Armstrong number

I make this program and hope you like the post if you like the post you can please comment and share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting programmingshortcut@gmail.com us form is given on the page’s right side.

Share your experience with this post,
Thank You!

ShareTweetPin
admin

admin

Related Posts

Program to find out code of grade and percentage calculator in Java
Programming Language

Program to find out code of grade and percentage calculator in Java

April 5, 2022
Program to find out the grade and percentage calculator in cpp
Programming Language

Program to find out the grade and percentage calculator in cpp

March 7, 2022
Program to find out the grade and percentage calculator in c
Programming Language

Program to find out the grade and percentage calculator in c

March 6, 2022
Programs in c

how to find quotient and remainder in c program

April 21, 2020
Programming Language

Difference and similarities between java and c++

April 3, 2022
.Net

Difference between FOPs and OOPs

April 16, 2020

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

I agree to the Terms & Conditions and Privacy Policy.

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c++

    0 shares
    Share 0 Tweet 0
  • Java program to perform sum of digits until single digit is obtained

    0 shares
    Share 0 Tweet 0
ADVERTISEMENT
C, C++ & Java Programming tutorial with example Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • Armstrong number in c
  • Program to find out code of grade and percentage calculator in Java
  • Program to find out the grade and percentage calculator in cpp

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.