Search:

Type: Posts; User: babis99

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    7,355

    That is for the case of struct gate *inputs[ ] or...

    That is for the case of struct gate *inputs[ ] or for struct gates **inputs ???
    This data structure is created to represent logic gates input. I have created a program that calculates output of a...
  2. Replies
    7
    Views
    7,355

    But how would i use it ?? I mean with the binary...

    But how would i use it ??
    I mean with the binary tree i could say :



    typedef struct data {
    int val;
    struct data *next[2];
    }Data;
  3. Replies
    7
    Views
    7,355

    i would say that it is a tree of undefined size...

    i would say that it is a tree of undefined size ????
  4. Replies
    7
    Views
    7,355

    Usage of struct ** in linked lists

    typedef struct gate {

    CallBack f;


    struct gate ** inputs;

    }Gate;
Results 1 to 4 of 4