Do all declaration statements result in a fixed reservation in memory?
4 years ago
Data Structure and Algorithm
Most declarations do, with the exemption of pointers. Pointer declaration does not allocate memory for data, but for the address of the pointer variable. Actual memory allocation for the data comes during run-time.
Sujan Bk
Jan 9, 2022