JasonWB007
Programmer
Hi everyone,
Please forgive the simple question, but if I have a declaration, such as:
const int UPPER_LIMIT = 127;
is the *best* policy to have it in caps? I usually do it in:
#define UPPER_LIMIT 127
and am wondering if the same thing should apply to a const variable?
Thoughts?
Jason
Please forgive the simple question, but if I have a declaration, such as:
const int UPPER_LIMIT = 127;
is the *best* policy to have it in caps? I usually do it in:
#define UPPER_LIMIT 127
and am wondering if the same thing should apply to a const variable?
Thoughts?
Jason