Search:

Type: Posts; User: major_blagger

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    17
    Views
    3,670

    Re-read the first post

    Re-read the first post
  2. Replies
    5
    Views
    1,940

    try searching for 'aimbot' 'source' or similar...

    try searching for 'aimbot' 'source' or similar variants
  3. Replies
    11
    Views
    1,563

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?a...

    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1043803465&id=1043284385
  4. Replies
    13
    Views
    26,198

    You might prefer to defer argument checking...

    You might prefer to defer argument checking (other than exceeding the max string length) to send_it.pl. This potentially makes for easier maintenance.

    In other words, construct your cmdLine string...
  5. Expand

    Expand
  6. Replies
    14
    Views
    1,659

    K&R2 uses for(;;) as in #define forever...

    K&R2 uses for(;;)

    as in

    #define forever for(;;) /* infinite loop */
  7. Replies
    14
    Views
    1,902

    trains.h?

    trains.h?
  8. Use arrays of names. e.g. {"The Sun", "The...

    Use arrays of names.
    e.g. {"The Sun", "The Times"}

    Now you can access according to the chosen file
    e.g. func(names[chosenfile1-1], names[chosenfile2-1]);
  9. Thread: Anagram

    by major_blagger
    Replies
    7
    Views
    1,991

    Make two separate projects

    Make two separate projects
  10. Thread: Ideas?

    by major_blagger
    Replies
    5
    Views
    1,144

    How about a calculator? You ask for an...

    How about a calculator?

    You ask for an expression eg.
    1 + 5
    48 / 2
    1 + 5 / 5
    1 / 0

    and produce the answer
    1 + 5 = 6
  11. Replies
    55
    Views
    12,556

    Easy So they can plug 'The C Programming...

    Easy
    So they can plug 'The C Programming Language' and make more money.
    ;)
  12. Replies
    2
    Views
    2,747

    What were the expressions that gave the bad...

    What were the expressions that gave the bad output?

    At the moment you are only handling single digit numbers so numbers of more than 1 digit may result in some unexpected output.
  13. Replies
    10
    Views
    8,147

    OK. Consider it from a different perspective....

    OK. Consider it from a different perspective. When you post code, people here may try to compile it so that they can help you out. If you post code which isn't mainstream C (i.e. C++ style comments...
  14. Replies
    10
    Views
    8,147

    If you practise good habits now then it will save...

    If you practise good habits now then it will save you a LOT of pain in the future. Brian was trying to help fix some of the problems which, down the line, may be very hard to debug. You were not...
  15. Replies
    9
    Views
    2,308

    lol. I think "I am silly" is a replacement for...

    lol. I think "I am silly" is a replacement for characters in banned words
  16. Replies
    9
    Views
    2,308

    Post what you have

    Post what you have
  17. Replies
    13
    Views
    2,538

    I agree. Look into how diff is done. Also look...

    I agree. Look into how diff is done. Also look into longest matching substrings and sequence alignment. Or you could take a list of all the words and see how many match, irrespective of their...
  18. Replies
    2
    Views
    1,178

    You may want to consider using string to integer...

    You may want to consider using string to integer library functions (e.g. atoi() or strtol())

    or do it one number at a time e.g.
    take the 1(i.e. take the '1' and turn it into an integer)
    add to...
  19. Replies
    28
    Views
    3,385

    Was it a book for C or for some functional...

    Was it a book for C or for some functional programming language?

    I guess it all depends on the scope of your restrictions.
  20. Replies
    21
    Views
    3,579

    Could you post your output for "they call me jim"?

    Could you post your output for "they call me jim"?
  21. Replies
    21
    Views
    3,579

    I wouldn't dare suggest it was bad code. I was...

    I wouldn't dare suggest it was bad code. I was only helping out the original poster and anyone trying to learn from this thread that they should take care in understanding that the function is not a...
  22. Replies
    21
    Views
    3,579

    Beware of this code. Rather than reversing...

    Beware of this code.

    Rather than reversing the words ("they call me jim" -> "jim me call they") it will reverse the whole string ("they call me jim" -> "mij em llac yeht") which given the...
  23. Replies
    25
    Views
    3,374

    For fun. Something tells me people aren't...

    For fun. Something tells me people aren't referring to this thread to get style tips.
  24. Replies
    25
    Views
    3,374

    Only in C99

    Only in C99
  25. Replies
    25
    Views
    3,374

    main(){int...

    main(){int i;for(*&i=0;(&i)[0]<012;0[&i]++)putchar(060^i|060|i^060);putchar(10);}
Results 1 to 25 of 73
Page 1 of 3 1 2 3