Possible Duplicate:
Whether variable name in any programming language takes memory space
I was just reading about memory allocation, and can't help wonder this question:
Do both
int x = 4;
and
int this_is_really_really_long_name_for_an_integer_variable = 4;
occupy same amount of memory (the total memory occupied by the variable. not just sizeof(int)
)
I understand that this question is related to 'programming languages and compiler construction'. But, I haven't got to study it :(