Search:

Type: Posts; User: master5001

Search: Search took 0.04 seconds.

  1. Replies
    49
    Views
    26,971

    I like perl :) New York City!? (I doubt most of...

    I like perl :) New York City!? (I doubt most of the people here remember those commercials to get the reference--and so you don't think I am being a random nut, I noticed MK27 is from NYC). And the h...
  2. Replies
    49
    Views
    26,971

    He is right to touch on the fact that you are not...

    He is right to touch on the fact that you are not considered a troll and are a regular member. Thus some of us still hold respect for you and you wouldn't wish to go around and make people feel...
  3. Replies
    49
    Views
    26,971

    Haha you made me laugh :-) In all seriousness,...

    Haha you made me laugh :-) In all seriousness, your code isn't "not-brilliant" because of how you did it. It is problematic because of the fact that global buffers are just plain messy. Simply put...
  4. Replies
    49
    Views
    26,971

    Because 0x80000 is half a mebabyte in...

    Because 0x80000 is half a mebabyte in hexidecimal. Figure if 0x100000 is 1MG, then 0x100000 / 2 = 0x80000. Right? .5MB = 2^19, right?
  5. Replies
    49
    Views
    26,971

    I hate to be the psyche student on you...

    I hate to be the psyche student on you but your code is neither brilliant nor worth using for homework purposes. I was going to simply correct your code but the entire way it works was too flawed to...
  6. Replies
    49
    Views
    26,971

    I do not see any minor errors. I only see...

    I do not see any minor errors. I only see crippling ones and ones that make the program HIGHLY under-efficient if it even works to begin with.

    You obviously know where the edit button is, so...
  7. Replies
    49
    Views
    26,971

    Oooops, I didn't notice the line number mumbo...

    Oooops, I didn't notice the line number mumbo jumbo. MK27's code hardly seems brilliant. I mean come on now dude...



    #include <stdlib.h>
    #include <stdio.h>

    int main(int argc, char **argv)...
  8. Replies
    49
    Views
    26,971

    Oh! And who could forget this little gem. ...

    Oh! And who could forget this little gem.

    Example:


    #include <stdlib.h>
    #include <stdio.h>

    #define IS_LESS_THAN <
  9. Replies
    49
    Views
    26,971

    Example: #include #include...

    Example:


    #include <stdlib.h>
    #include <stdio.h>

    int main(int argc, char **argv)
    {
    if(argc != 3)
    puts("Usage: copyfile [from] [to]");
  10. Replies
    49
    Views
    26,971

    ++i + 1 does not produce an undefined value for...

    ++i + 1 does not produce an undefined value for i. If he put ++i += i + 1, that would be a problem.
  11. Replies
    49
    Views
    26,971

    Not to ruin a perfectly good round of public...

    Not to ruin a perfectly good round of public humiliation on another member, but I should point out I posted code yesterday that does basically exactly this task. Though mine works a little...
Results 1 to 11 of 11