I'm not sure if this is at least possible, but I want to access the elements from my structure using a variable with the exact name of the element.
My program does operations with the members of the structure, and it is depending on the column that the user chooses, but to make it simpler (because that's not the main point) I'm going to write some simple lines, so it would be something like this:
(Let's say I've already filled out the list with another function, but that's not the main point neither, so I won't put it)
The structure, which is going to be used for each one of the nodes of a doubly linked list (each node represents like a row from a table with two columns)
typedef struct row {
float A, B;
struct row *prev, *next;
} _row;
Main
int main(){
char column;
printf("Which column would you like to see? (A or B): ");
scanf("%c",&column);
show_column(column);
system("PAUSE");
}
And the function
void show_column(char column){
_row *aux;
aux=start;
while(aux->next!=NULL){
printf("\n %.2f",aux->column);
aux=aux->next;
}
//this is because that cycle is not going to show the last node
printf("\n %.2f",aux->column);
}
"start" is a _row too. It is modified to point the start from the list in the same function where I insert the nodes.
What I want to know is how to make this part in the function:
printf("\n %.2f",aux->column);
Because "column" is not a member from the structure, but it is a variable that should contain the name of one of the members (A or B).
I need this so I won't have to repeat the same code but using "if" and with just a letter (B) different.
Sorry if there's something wrong with the orthography and grammar, my English is not very good, and thanks a lot for your help!
