Search:

Type: Posts; User: Pharoh

Search: Search took 0.00 seconds.

  1. Replies
    15
    Views
    5,537

    What about about using a stack. Push a letter...

    What about about using a stack.

    Push a letter down on the stack every letter that gets entered.

    When input is done just read the stack from the top to bottom.
  2. Replies
    4
    Views
    1,509

    Thank you Salem. using "rb" was the trick in...

    Thank you Salem.

    using "rb" was the trick in the fopen funtion.
  3. Replies
    15
    Views
    5,537

    If the string is always the same length there is...

    If the string is always the same length there is a way to code it yes.

    If the string is different lengths each time I'm not experienced enough to help you.
  4. Replies
    4
    Views
    1,509

    #include void main() { FILE...

    #include <stdio.h>

    void main()
    {

    FILE *filein;
    int array[256]={0};
    int input=0;
    bool done=false;
  5. Replies
    4
    Views
    1,509

    files > 65535 bytes wont read in dos

    Hello, I hope you can welcome one more newbie into the ranks!

    For practice I've been trying to make a program (16bit dos) that reads each byte in a file. I've set up an array of 256...
Results 1 to 5 of 5