I am trying to write some C code for embedded programming purpose where memory is very restricted that I need to reduce code size as much as possible.
then I have a few questions regarding code size
1. does length of variable name matter for code size?
Is it good to keep variable name short for embedded programming?
2. Does each letter count as 1 byte for actual code size?
for ex. 'if' statement, is it counted as 2 byte?
when code to loaded to memory is prepared how letters including key words count?