How can I declare a const memory-specific pointer to a const variable?
1) const char far *idata *const c3; This compiles, but I suspect this is a double pointer. 2) const char far *idata const c3; Does not compile.
Any ideas?