I'm trying to use a constant definition in another constant definition like so:
#define ADDRESS 5002
#define FIND "foundaddress ADDRESS"
But this includes ADDRESS in the FIND constant when I want the constant FIND to be foundaddress 5002.
Is there any way to do this?