Search:

Type: Posts; User: merlin2011

Search: Search took 0.00 seconds.

  1. Anyone know a good command line tool for call hierarchy?

    Hi,

    I was wondering if anyone knew of a command line tool for analyzing C source code and generating a call hierarchy. I'm looking for something like a more powerful version of cflow, which...
  2. Replies
    2
    Views
    1,529

    Question about Video Encoding

    I'm not sure if this is too general a question to ask on this board, so please let me know if this is not appropriate.

    I'm wondering if there are any sites online that will give me the detailed...
  3. Replies
    11
    Views
    2,003

    I think the last point was what I didn't realize,...

    I think the last point was what I didn't realize, but suspected was true. I have no idea why the "address of" operator doesn't work on the name of an array, but I guess that's just the way it is....
  4. Replies
    11
    Views
    2,003

    First of all, the declaration of the struct. ...

    First of all, the declaration of the struct.


    typedef struct instruction{
    char opcode, rt, rs, rd, sa;
    short int immed;
    unsigned int target;
    char* label;
    char text[40];
    }
  5. Replies
    11
    Views
    2,003

    I'm a little bit confused. My understanding is...

    I'm a little bit confused. My understanding is that

    char* temp = ada[ind].text;

    causes temp to point at the same thing text is pointing to.
    Doesn't that mean I'm modifying what text is...
  6. Replies
    11
    Views
    2,003

    Location of the dereference operator

    Apparently this code works:


    char* temp = ((ada+ind)->text);
    process(ada+ind, &temp);


    While this code doesn't:
Results 1 to 6 of 6