Q:

C Program to convert Number in Characters

belongs to collection: C Programs

0

Number in characters conversion: In c language, we can easily convert number in characters by the help of loop and switch case. In this program, we are taking input from the user and iterating this number until it is 0. While iteration, we are dividing it by 10 and the remainder is passed in switch case to get the word for the number.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Let's see the c program to convert number in characters.

#include<stdio.h>    
#include<stdlib.h>  
int main(){  
long int n,sum=0,r;    
system("cls");  
printf("enter the number=");    
scanf("%ld",&n);    
while(n>0)    
{    
r=n%10;    
sum=sum*10+r;    
n=n/10;    
}    
n=sum;    
while(n>0)    
{    
r=n%10;    
switch(r)    
{    
case 1:    
printf("one ");    
break;    
case 2:    
printf("two ");    
break;    
case 3:    
printf("three ");    
break;    
case 4:    
printf("four ");    
break;    
case 5:    
printf("five ");    
break;    
case 6:    
printf("six ");    
break;    
case 7:    
printf("seven ");    
break;    
case 8:    
printf("eight ");    
break;    
case 9:    
printf("nine ");    
break;    
case 0:    
printf("zero ");    
break;    
default:    
printf("tttt");    
break;    
}    
n=n/10;    
}    
return 0;  
}  

Output:

enter the number=4321
four three two one  

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< C Program to generate Fibonacci Triangle...