Search:

Type: Posts; User: john.c

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. The problem is that there is no way to run C code...

    The problem is that there is no way to run C code at the preprocessor stage, and the preprocessor itself doesn't have any string processing capability built in, let alone a "de-stringify" operator to...
  2. Your "ugly" way is the only way.

    Your "ugly" way is the only way.
  3. Replies
    38
    Views
    1,325

    Clearly you've never had a thought in your life.

    Clearly you've never had a thought in your life.
  4. Replies
    38
    Views
    1,325

    Salem's (obviously untested) code started the...

    Salem's (obviously untested) code started the loop at 0 instead of 1, an easy mistake to make from "muscle" memory. It was supposed to be something like this.


    #include <stdio.h>
    #include...
  5. Replies
    38
    Views
    1,325

    Why don't you try thinking for yourself and...

    Why don't you try thinking for yourself and figuring out the small mistake in Salem's code.
  6. Replies
    12
    Views
    1,132

    I see you may not want this anymore, but had a...

    I see you may not want this anymore, but had a little time to look at it today and I think the following works.

    The dump of the returned message looks like this:


    45 00 00 30 00 00 00 00 3C...
  7. Replies
    12
    Views
    1,132

    Looking at this again, I see that I accidentally...

    Looking at this again, I see that I accidentally used / instead of \ for my hex characters in the string (!), and also since my machine is little-endian I need to swap the bytes at the end of the...
  8. Replies
    12
    Views
    1,132

    Perhaps your program was waiting for a response...

    Perhaps your program was waiting for a response and stole the response from the other ping program (if that's possible).
    Here's an implementation based on the RFC example C code that might work:

    ...
  9. Replies
    12
    Views
    1,132

    I hadn't looked at it closely, but it clearly has...

    I hadn't looked at it closely, but it clearly has some issues (&gt; is how you write > in html, as you probably know). It does make me wonder if it's even a (robustly) correct calculation. Hers's the...
  10. Replies
    12
    Views
    1,132

    I think you need to set icmp_cksum properly....

    I think you need to set icmp_cksum properly.
    Ping in C - GeeksforGeeks
  11. Replies
    14
    Views
    795

    I didn't say a mouse was a solution. I said to...

    I didn't say a mouse was a solution.
    I said to try it to see if it works.
    It DOES NOT work for me, with either the touchpad or the mouse.
    Anyway, you obviously don't want my help so I'll leave you...
  12. Replies
    14
    Views
    795

    Try a mouse. Neither seems to work for me. The...

    Try a mouse. Neither seems to work for me. The terminal seems to be eating the mouse clicks.
  13. Replies
    14
    Views
    795

    Presumably you are using the ncurses library....

    Presumably you are using the ncurses library.
    What exactly is your compile line?


    You say you tried it on Linux and it worked fine. So does it work on Linux or not?

    EDIT:
    Also, have you...
  14. Replies
    14
    Views
    795

    Are you using ncurses itself or are you using...

    Are you using ncurses itself or are you using pdcurses?
    Did you download a precompiled library or compile it yourself?
    Are you compiling your program through mingw or msys2, or just directly on...
  15. Replies
    2
    Views
    941

    The article incorrectly calls "\e[1;1H\e[2J" a...

    The article incorrectly calls "\e[1;1H\e[2J" a "regex".
    It is, of course, an ANSI escape sequence.
    ANSI escape code - Wikipedia

    Even Windows seems to respond to these now, although I don't think...
  16. Replies
    24
    Views
    9,435

    What do you mean by with `#here` strcspn says...

    What do you mean by with `#here` strcspn says the position is 0, so it works.

    EDIT:
    If file[x] is a single character (I don't know what the & is for), then you could use strchr backwards,...
  17. Replies
    24
    Views
    9,435

    strcspn does what you want. The 'c' stands for...

    strcspn does what you want. The 'c' stands for compliment, and it counts how many leading characters of your string are not any of the given characters. It returns the length of the string if none of...
  18. Replies
    3
    Views
    3,453

    Try one of these: 0x00ff58 Begin 0x00ff9d...

    Try one of these:


    0x00ff58 Begin
    0x00ff9d KP_Begin

    It's from the list here: https://github.com/linuxmint/gtk/blob/master/gdk/keynames.txt
    Here is the section with the above codes in it:
  19. Replies
    4
    Views
    2,846

    Depending on your system you may also need to...

    Depending on your system you may also need to define _POSIX_C_SOURCE before including stdio.h to use fileno:


    #define _POSIX_C_SOURCE
    #include <stdio.h>
  20. So now just add in a counter. Why are you...

    So now just add in a counter.

    Why are you using such a stupid function? It's just:


    void f(int a) {
    return a >= 1 ? 1 : a;
    }
  21. Replies
    3
    Views
    9,844

    Hardware problems can be very flaky. Could just...

    Hardware problems can be very flaky.
    Could just be something a little loose.
    In any case, make sure you back everything up!
  22. 1. There is a hidden startup function: ...

    1. There is a hidden startup function:


    startup:
    ...
    call main
    ...
    exit process ("return" to operating system) with exit system call

    2. Yes, of course it's the same.
  23. Replies
    13
    Views
    5,346

    Compilation unit 1: #include ...

    Compilation unit 1:


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

    // tell this compilation unit about the existence of function f2
    // in another comp. unit
    void f2();
  24. Replies
    8
    Views
    3,849

    This is even less code: #include ...

    This is even less code:


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

    typedef struct Tree {
    int value;
    struct Tree *left, *right;
    } Tree;
  25. Replies
    8
    Views
    3,849

    You are still ignoring one warning (unused...

    You are still ignoring one warning (unused variable d).

    Also, this is a strange comment:


    Why do you malloc one random node when you store all the others on the stack?
    You could just say:

    ...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4