This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

howto declare const memory-specific pointer to const var?

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?

0