I have the name of n variables stored in a struct "list", and I would like to show the value of the variables by means of the position of the struct, that is:
var_1=3
lista{1}='var_1'
so that by entering lista{1}
you print 3
, and not the string 'var_1'
.