Search:

Type: Posts; User: TypicalHog

Search: Search took 0.00 seconds.

  1. This check (if (needed > *capacity)) should be...

    This check (if (needed > *capacity)) should be correct since if I need to fit "needed" amount of elements into the array - the array needs to be able to hold at least that many elements, therefore if...
  2. Thank your for the suggestions. Could you take a...

    Thank your for the suggestions.
    Could you take a look at the 2nd problem I have (I assume you were writing an answer when I posted the other reply).
  3. Ok, this worked. Thank you. I have 1 more problem...

    Ok, this worked. Thank you. I have 1 more problem tho.



    typedef struct Node {
    int id;
    int type;
    float value;
    float bias;
    float pos;
  4. I already tried that, I think it didn't work. Let...

    I already tried that, I think it didn't work. Let me check real quick.
  5. C - realloc() I Keep getting Segmentation fault (core dumped)

    I have been getting generic Segmentation fault (core dumped) error for a day now. I just can't figure out what's the problem with my code.


    typedef struct Node {
    int id;
    int type;
    ...
Results 1 to 5 of 5