just a question
Code:
struct stackNode
{
int data;
struct stackNode *nxt
}
typedef struct stackNode StackNode;
typedef StackNode *StackNodePtr;
is
Code:
typedef struct stackNode StackNode;
the same as
Code:
struct stackNode StackNode
and is
Code:
typedef StackNode *StackNodePtr;
the same as
Code:
struct stackNode *StackNodePtr
can anyone transcribe ? this or ? correct me? I am kinda getting confused