Possible Duplicate:
“static const” vs “#define” in c
When I do this :
#define WEEKDAYS 7
and that :
const int WEEKDAYS = 7;
Any difference between them ? seems that both do the same thing - sets a constant value for future usage within the code .