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?
Compiler terminates when processing this line
const char far *idata const c3;
with "SOURCE\MAIN.C(xx): error C141: syntax error near 'const'"
~egon