Question about Constants

not sure what distinction you're trying to make. obviously #define macros and inline functions are more involved that simply defining a constant

what's the difference between

#define Constant    123

and

const int Constant = 123;

in the binary?