Tag Archives: automorphic

Write a program in ‘C’ to print automorphic numbers. The automorphic number is a number in which the square of the number contains the number in the end. 10m Dec2005

Write a program in ‘C’ to print automorphic numbers. The automorphic number is a number in which the square of the number contains the number in the end. Example: (a) 5; 25 (b) 6; 36. 10m Dec2005 #include<stdio.h> void main() {   int SQ,i,NUM;   clrscr();   printf(“AUTOMORPHIC NUMBERS BETWEEN 0 TO 999 ARE :… Read More »