I have a very simple piece of code with 2 structures and one dynamic allocation. The program crashes on the "nume" initialization.
typedef struct{
int key;
string name;
} TElement;
typedef struct nod {
int cheie;
string nume;
struct nod *stg, *dr;
} NOD;
when i try to do this
void ABC::inserare_element(TElement e){
NOD *p, *q;
int n;
/* construction nod p*/
n=sizeof (NOD);
p=(NOD*)malloc(n);
p->cheie = e.key;
p->nume = e.name; // on this line the program crashes
Thanks
new. – chris Jun 3 '12 at 20:21std::stringever have its constructor run? If not, it doesn't exist and you cannot assign to it as if it did. – GManNickG Jun 3 '12 at 20:22typedefin C++. Just name your structures -struct NOD {/*..*/};– Luchian Grigore Jun 3 '12 at 20:27