#include<stdio.h> #include<string.h> void toWord(int,int); char * getPositionValue(int); char * digitToWord(int); char word[100][30]; int i =0; int main(){ int j,k,subnumer; unsigned long int number; printf("Enter any postive number: "); scanf("%lu",&number); if(number ==0){ printf("Zero"); return 0; } while(number){ if(i==1){ toWord(number %10,i); number = number/10; }else{ toWord(number %100,i); number = number/100; } i++; ...
Learn C++ Programming fast and easy, find C++ Program Codes