Computer Science, asked by murthyseetha59, 8 months ago

If any Automatic variable is not initialised then it will have? ​

Answers

Answered by navkomal
1

Answer:

Using the value of a not initialised variable is undefined behaviour. In practice automatic variables are allocated in processor registers or on the stack. Normally if not initialised they will get the value present in the register or memory used for the stack at the moment.

Similar questions