Regarding the scope of the variables. Identify the incorrect statement:
A. automatic variables are automatically initialized to 0 B. static variables are automatically initialized to 0 C. the address of a register variable is not accessible D. static variables cannot be initialized with any expression
RE: Regarding the scope of the variables. Identify the...
A is incorrect statement because we have to initialize some value according to variable's data type in it otherwise it will accept any garbage value (value associated with last variable or last program).