w3resource

C Exercises: Find the the Authomorphic numbers between 1 to 1000

C Numbers: Exercise-22 with Solution

Write a program in C to find the Authomorphic numbers between 1 and 1000.

Sample Solution:

C Code:

# include <stdio.h>
# include <stdlib.h>
# include <stdbool.h>

bool chkAutomor(int num1)
{
    int sqno = num1 * num1;
    while (num1 > 0)
    {
        if (num1 % 10 != sqno % 10)
            return false;
        num1 /= 10;
        sqno /= 10;
    }
    return true;
}
int main()
{
    int i;
  printf("\n\n Find the the Authomorphic numbers between 1 to 1000 \n");
  printf(" -------------------------------------------------------\n");
  printf(" The Authomorphic numbers are: ");
	for(i=1;i<=1000;i++)
	{
      if( chkAutomor(i))
         printf("%d ",i);
	}
 printf("\n");
}

Sample Output:

 The Authomorphic numbers are: 1 5 6 25 76 376 625 

Pictorial Presentation:

C programming: Check if a number is Authomorphic or not.

Flowchart:

Flowchart: Find the the Authomorphic numbers between 1 to 1000

C Programming Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C to check if a number is Authomorphic or not.
Next: Write a program in C to check whether a number is a Duck Number or not.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

C Programming: Tips of the Day

How to use __FILE__ macro shows full path?

Try

#include<string.h>

#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
For Windows use '\\' instead of '/'.

Ref: https://bit.ly/3mOf045

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook