Guys ENOUGH IS ENOUGH. Think of a constant as a value placed in at compile time. For example, in the following two codes are the same. Code 1;
const int c = 100;
int main()
{
printf(c*50);
};
Code 2;
int main()
{
printf(int(5000));
};
I'm pretty sure that the same program bit per bit
would come out.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
