I have this macro:
#define kPaxZoneW 105.0
I want to define a subsequent macro that always needs to have the same value but for semantic reasons, needs to have a different name. Can I get away with this after the previous definition?
#define kPaxZoneAFA kPaxZoneW
This would ensure that kPaxZoneAFA will always be equal to the value of kPaxZoneW.
Yes; when you do this, any use of
kPaxZoneAFAwould be replaced first bykPaxZoneWthen by105.0.