TO CONVERT DIGITS OF A NUMBER INTO WORDS

#include<stdio.h>
void main()
{
    int num, temp;
    printf("Enter a number");
    scanf("%d",&num);
    printf("%d->",num);
    for(temp = 0; num > 0 ; num /= 10 )
        temp = temp*10 + num%10;
    while(temp > 0)
    {
        switch(temp%10)
        {
            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;
        }
        temp /= 10;
    }
}

1 comments: (+add yours?)

Anonymous said...

Shooting Casino: A Private Casino | ShootersCasino
A private 바카라 casino located on the Qualla Reservation in Qualla, New Mexico. 메리트 카지노 쿠폰 The 제왕 카지노 casino's 1200 slot machines are stacked against

Post a Comment