I have a variable that stores the name of of a subroutine. Is there a way I can call the subroutine by using "call [variable]".
I have several subroutine (example names: X_1, X_2, X_3, etc), and the user provides the number (1, 2, 3, etc), and then the code is supposed to operate subroutine associated with the number.
This is not possible automatically by the compiler. You must prepare a table which stores the numbers or names according which they should be selected and then call the right subroutine.
After that you can choose the right function using a select case construct.
or
You can also use a table with function pointers. The amount of work required will be similar.