Hi
I am trying to make arrays inside a structure.. the structure looks like,
struct mystruct{
int val;
int num;
string state[];
mystruct *next[];
};
The next pointer array works fine but state array gives segmentation fault.
I have an array of this structure .
mystruct Graph [];