C program to find a neon number
A neon number is a number where the sum of digits of square of the number is equal to the number. For example, if the input number is 9, its square is 9*9 = 81 and the sum of the digits is 9. i.e. 9 is a neon. In this program, you are going to […]
C program to find a neon number Read More »