Esempio n. 1
0
int main()
{
    int t = 101;
    char *s;

    s = numberToWords(t);
    printf("%d:%s\n",t,s);

    return 1;
}
int main()
{
    cout << numberToWords(123) << endl;
}