Declaration statement-memory is reserve
When using a declaration statement how memory is reserved?
Expert
Memory is reserved by using data type in variable declaration. A programming language execution has predefined sizes for its data types.
For illustration, in C# the declaration int i; will reserve 32 bits for variable i.
A pointer declaration reserves memory for address or pointer variable, however not for the data that it will point to. The memory for the data pointed by the pointer has to be assigned at runtime.
The memory reserved by compiler for simple variables and for storing pointer address is assigned on stack, while the memory allocated for pointer referenced data at runtime is allocated on heap.
What are the differences between singly-linked doubly-linked and circularly-linked lists?
Explain about the direct call to ISR by an interrupting source.
Explain the term stack operation. Also write some of its operations.
What are the uses of binary tree?
Write down the various types of matrix operations?
What is the application of tree data-structure?
Describes the uses of Tree Database?
Explain the user interface design?
Write down the various types of algorithms?
Illustrates the difference between BFS and DFS?
18,76,764
1952511 Asked
3,689
Active Tutors
1451645
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!