Search:

Type: Posts; User: amadeus111

Search: Search took 0.00 seconds.

  1. I was working on my own approach. now I will...

    I was working on my own approach. now I will check yours and learn and hopefully fix bugs and convert characters to numbers as well
    thank you!
  2. zero is not neglected anymore if (n==0) {...

    zero is not neglected anymore


    if (n==0) {
    printf("zero");
    }
  3. Thanks for lightening my mind after reading your...

    Thanks for lightening my mind after reading your comment it made perfect sense. for extra challenge, I put blanks after every 3 digit
  4. #include #include #define d...

    #include<stdio.h>
    #include<string.h>
    #define d 9
    #define e 9
    #define f 4
    int main()
    {
    char *num[]={"","one","two","three","four","five","six","seven","eight","nine"};
    char...
  5. Writing numbers in letters is there a easier way ?

    #include<stdio.h>
    #include<string.h>
    #define a 9
    #define b 9
    #define c 3
    int main()
    {
    char *num[]={"","one","two","three","four","five","six","seven","eight","nine"};
    char...
Results 1 to 5 of 5