20/05/2008, 14:48
|
| | Fecha de Ingreso: abril-2008
Mensajes: 28
Antigüedad: 16 años, 6 meses Puntos: 0 | |
Respuesta: Problema con puntero Ok aqui esta todo definido
typedef struct stNode {
char paraula[MAX_CARACTERS];
struct stNode *siguiente;
} tNode;
/* LISTA */
typedef struct {
tNode *primero;
} tLlista;
/* ITERADOR LISTA */
typedef tNode* tIteradorLlista;
Gracias |