違いは何ですか
typedef struct node *node_ref;
typedef char *cstring;
struct node {
cstring string;
node_ref link;
};
と
typedef struct node *node_ref;
struct node {
char string;
node_ref link;
};
私のプログラムは、どちらの宣言でも警告なしで正常にコンパイルされるため、どのような違いが生じたのかわかりません。