06/07/19 11:44:34
C言語で
typedef struct letter {
char c;
struct letter *follow;
struct letter *other;
char *trans;
} LETTER;
LETTER *p_root;
while( p!=NULL ){
p=p->other;
}
void main(){
LETTER *p = p_root;
p_root->c='m';
p_root->follow->c='a';
p_root->other->c='n';
p_root->trans=NULL;
}
と宣言されている単独のpには何が入っているのか
解説してくれるようなCの本ってどのくらいのレベルでしょう?