C program to print Numbers in form of Characters
The below program is to print the word representation of a number in C using loop. C program to print Numbers in form of Characters #include <stdio.h> #include<stdlib.h> void main() { int num,x; int tot = 0; printf("Enter the number: "); scanf("%d",&num); while(num>0) { x = num%10; tot = tot*10 + x; … Read more