Unable to echo $varible_$variable in csh
set a = temp
set value_${a} = 10
when trying to print the variable it isn't working. I need this to implement in nested for loop.
echo $value_$a value_: Undefined variable. (working with $value_temp)
Thanks in advance