typedef struct Cell
{
int north,south,east,west;
int RD;
bool visited;
} Cell_Info;
Cell_Info a[100];
this doesnt seem to want to dereference ..when i type a[0]. i get an erorr instead i should have a list of attributes that are instide the structure...Any ideas?