In C, how do you use the value of a variable or a field within a struct as the name of a variable or field within a struct to be used in a program?
i.e.:
char variable_name[];
struct_x.value_of_variable_name = 1;
// assuming the variable struct_x.value_of_variable_name is an int