所以我已经弄清楚如何链接列表但现在我想显示它,我该如何实现这一点。我已经开始编写代码,但这就是不对的。有什么帮助吗?
typedef struct baseNode_s
{
struct baseNode_s *proximo;
} baseNode;
typedef struct identificador_s
{
int a;
int b;
int c;
} identificador;
typedef struct contaBancaria_s
{
identificador id;
int saldo;
int credito;
baseNode node;
} contaBancaria;
contaBancaria *contaP = NULL;
void lcontas() {
contaBancaria *p;
printf("\n=================INICIOU A listagem\n");
for(p=contaP; p->node.proximo != NULL; p->node = p->node.proximo){
printf("\n%d - %d - %d %d %d", p->id.a, p->id.b, p->id.c, p->saldo, p->credito);
}
free(p);
printf("\nChegou ao fim da listagem\n");
}