Search:

Type: Posts; User: denizengt

Search: Search took 0.01 seconds.

  1. Replies
    20
    Views
    17,826

    Ok, sorry to resurrect this issue once more. ...

    Ok, sorry to resurrect this issue once more.

    I've got numbers to words working. Now, what I have to do, is convert numbers entered into stdin, into their word equivalents! I have spent a few weeks...
  2. Replies
    3
    Views
    1,978

    Here's what I have so far #!/bin/csh -f...

    Here's what I have so far




    #!/bin/csh -f

    set params = $argv[1-]
    set argc = $#argv
    set lsval = `ls`
  3. Replies
    3
    Views
    1,978

    C-Shell Scripting.. Help!

    Ok, recenty I've been trying to automate tasks. It was recommended that I learn CSH. So off I go, and learn some simple CSH, but I don't get how to do the following task.

    I'm trying to create a...
  4. Replies
    3
    Views
    27,109

    Converting Float to Hexadecimal

    Converting a floating point number to hexadecimal
    I'm trying to convert a floating point number (single precision). I want to show it's bit representation in hexadecimal, but I'm unsure on how to...
  5. Replies
    9
    Views
    1,486

    Basically I need a better emvironment for coding...

    Basically I need a better emvironment for coding in than Win32. Any other reasons for dropping Linux for FreeBSD?
  6. Replies
    9
    Views
    1,486

    Thanks everyone, I managed to bypass KDE, and...

    Thanks everyone, I managed to bypass KDE, and could get it to work by installing a bus mouse driver.

    The OS is blisteringly fast, as I expected. The only problem I have, using KDE2, is that I...
  7. Replies
    9
    Views
    1,486

    How can I bypass the window manager loading at...

    How can I bypass the window manager loading at startup?
  8. Replies
    9
    Views
    1,486

    Debian Newbie Needs Help

    I decided to try a Linux system on this decaying machine.

    I've installed Debian, v2.2 Linux Kernel and a system of utilities, X Windows, KDM, KDE.

    When the window manager boots, it's all very...
  9. Replies
    3
    Views
    1,642

    Help with searching word lists

    I have a string read from the KB, say string[].

    I have word lists:


    static char *dictSpace[] =
    {"One ","Two ","Three ","Four ","Five ","Six ","Seven ","Eight ","Nine ", "Ten ","Eleven...
  10. Replies
    20
    Views
    17,826

    Ok, so I managed to do it! Converting numbers to...

    Ok, so I managed to do it! Converting numbers to words that is. Thanks everyone

    I've run into another problem.


    I have a number entered as words and stored in a string. I want to convert it...
  11. Replies
    14
    Views
    4,650

    Prelude, in your code above could you explain the...

    Prelude, in your code above could you explain the role of memset?

    Could you also explain the role of *ncomm in commarize and ncomm in word build.

    The commarize code is a little confusing, once...
  12. Replies
    20
    Views
    17,826

    I'm still unsure on how to tackle this problem ...

    I'm still unsure on how to tackle this problem

    I've defined my struct similar to how Prelude did before.

    Now, let's assume I am in "word to number mode". I get a string using gets(string)

    I...
  13. Replies
    20
    Views
    17,826

    struct digit { const char *word[9]; int...

    struct digit {
    const char *word[9];
    int number[10];
    };

    struct digit base[] = {
    /* Ones */
    {
    {"one", "two", "three", ..., "nine"},
    {1,2,3, ... , 9},
  14. Replies
    1
    Views
    1,836

    Colours in DOS box

    I use RHIDE for C and MS's simple edit app. I'm pretty sure I haven't changed anything, but the DOS box now only has black and white (and grey) as colours - like it has changed some colour mode..
    ...
  15. Replies
    20
    Views
    17,826

    Ok, there's a question I've got to ask. I...

    Ok, there's a question I've got to ask.

    I don't think that the way I am trying to do it, ie, with functions, is perhaps the best method to do it. What I want to do, is convert numbers into words,...
  16. Replies
    20
    Views
    17,826

    Pointers! I can recognize pointers, but I'm not...

    Pointers! I can recognize pointers, but I'm not sure why one would use them over say, using variables for the purpose (especially in the context of arrays).

    What are the benefits of using pointers...
  17. Replies
    20
    Views
    17,826

    I must admit, I found those two links incredibly...

    I must admit, I found those two links incredibly confusing.
  18. Replies
    20
    Views
    17,826

    Ok DavT, thank you for replying. Apologies to...

    Ok DavT, thank you for replying. Apologies to everyone on the size!


    #include <stdio.h>
    #include <strings.h>

    void hasTrillions(char);
    void hasBillions(char);
    void...
  19. Replies
    20
    Views
    17,826

    Converting Numbers to Words

    Hello everyone.

    I'm new to programming in general, and I'm wondering if you can help me.

    Does anyone have a solution to a problem where you are given a number, lets say, 1645030, and have to...
Results 1 to 19 of 20