Howdy once again.
Structure:
struct {
...
struct
{
char name[MAX_INPUT_LENGTH];
} best_ratio;
...
} bfield_data;When reading from a file, this isn't working: bfield_data.best_ratio.name = fread_string (fp); (bfio.c:192: incompatible types in assignment) How can I get around this? I'm trying to steer away from using pointers on the structure itself as I am inexperienced with them. Any ideas?

