When a value of a variable is read from a memory location th
When a value of a variable is read from a memory location, the value will be overridden (Yes, No, does not matter) Writing variable value into memory location, the existing value will not be overridden (Yes, No, does not matter) When is the storage allocated for function static variables? (after function execution; Once before function execution; as part Of the main () program; does not matter]
Solution
d.)When a value is read from the memory, value stored at the memory is not overridden it is just copied to the variable.
e.) When a variable value is written to a memory location, value at the memory location will be overridden.
f.) Memory for function static variables are allocated even before the program startup.
