Search:

Type: Posts; User: Pointman

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,001

    Quzah, your sizeof was of StackType, mine was...

    Quzah, your sizeof was of StackType, mine was sizeof StackPtr.
    Does it make a difference??? Seems it would, now that I think about it, cuz StackType is a structure type and StackPtr is just a...
  2. Replies
    4
    Views
    2,001

    typedef structures

    typedef Struct node {
    char elem;
    struct node * next;
    } StackType;

    typedef StackType * StackPtr;
    StackPtr top;

    is now StackPtr a type of variable?? and top is a variable of...
Results 1 to 2 of 2