How can one locate a table of constants at a certain address in C ?
Okay, if you always know about values of fixed addresses then you may use direct addressing in your program. For example, coefficients' tables are always placed at addresses 0x1234, 0x2345, 0x3456 and 0x4567. Then for redefinition, just use: current_table = 0x2345 etc. Good days!