This code doesn't compile:
const int x = 123;
const int y = x;
It complains that "initializer element is not constant" for the y= line. Basically I want to have two const values, one defined in terms of the other. Is there a way to do this in C or do I have to use type-unsafe #defines or just write out the values literally as magic numbers?