> > da' ce are
> > typedef struct _NOD
> > {
> >     int inf;
> >     _NOD* urm;            //sau era NOD?
> > } NOD;
> > 
> iti merge asa ceva ???
> in loc de _NOD tre sa ai struct _NOD * urm;
> oricum nu poti avea NOD ca inca nu a fost definit tipul

in ANSI C:
typedef struct _NOD
{
    int inf;
    struct _NOD *urm;
} NOD;

in C++:
struct NOD
{
    int inf;
    NOD *urm;
};

Alta viata...

Mihai

---
Send e-mail to '[EMAIL PROTECTED]' with 'unsubscribe rlug' to 
unsubscribe from this list.

Raspunde prin e-mail lui