Automorphic Number in C Programming || Learning Duniya
What will be the programming of Automorphic Number? Today we are going to learn about the Automorphic Number . We will learn definition , some example, programming and logic behind the Automorphic Number and also look at the output either input number is Automorphic Number or not. What is Automorphic Number? Automorphic Number is a such type of mathematical number whose square end is equal to the original number. Means if you square the number then the end of that number is equal to original number. Example:- Lets take 5. Then square of it is 25 and this numbers ends with 5 , and last number is equal to original number. Another example 7. Then the square of this number is 49 and end number is 9, which is not equal to the original number. Programming :- #include<stdio.h> #include<conio.h> #include<math.h> int main() { int num, temp,sqrNum, count,last,temp1; //Data type decelaration printf( "Enter the numb...