I want to know whether memory is allocated during the local variable declaration process.
Suppose I write this code inside function, int a =10; memory is allocated and the value 10 is stored in that.
What about int a; ? This declaration statement will it allocate 4 bytes of memory?
Thanks.