Search:

Type: Posts; User: this

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    2,524

    Thanks for the reply. I tried piping it to...

    Thanks for the reply.

    I tried piping it to more and the message disappears, so it shouldn't be the error stream then...?


    choice /C:123 select | more
  2. Replies
    2
    Views
    2,524

    unknown stream from choice.exe

    Hi, I'm writing a "more" like program in c that reads from stdin. I'm using ReadFile() from windows.h to read the string and changes the console color. Everyting works great except it's not working...
  3. Replies
    5
    Views
    1,920

    pseudo code for reversing strings LOOP{ ...

    pseudo code for reversing strings


    LOOP{
    new_array[ first_index ] = old_array[ last_index ]

    increase first_index count,
    decrease last_index count,
    }
  4. Replies
    16
    Views
    3,369

    b = (a ^= (b ^= a)) ^ b; a ^= b ^= a ^= b; //...

    b = (a ^= (b ^= a)) ^ b;
    a ^= b ^= a ^= b; // O_O

    *read matsp post above for problems...
  5. Replies
    16
    Views
    3,369

    Problem w/ the above code is that it might cause...

    Problem w/ the above code is that it might cause overflows.



    a = a^b;
    b = a^b;
    a = a^b;
Results 1 to 5 of 5