I've seen this done in C before:
#define MY_STRING "12345"
...
#define SOMETHING (MY_STRING + 2)
What does SOMETHING get expanded to, here? Is this even legal? Or do they mean this?:
#define SOMETHING (MY_STRING[2])
|
I've seen this done in C before:
What does SOMETHING get expanded to, here? Is this even legal? Or do they mean this?:
|
|||||||||||||||||||
|
|
String literals exist in the fixed data segment of the program, so they appear to the compiler as a type of pointer.
|
|||||||||||||||||||
|
|
When you have an array or pointer, Notice what happens when you add 0. |
|||||
|