Examlex

Solved

Which of the Following Statements Is CORRECT

question 31

Multiple Choice

Which of the following statements is CORRECT?


Definitions:

Addresses

Refers to specific locations in computer memory, each uniquely identifying a byte, that data and instructions reside in.

Dynamic Allocation

The process of assigning memory space for variables at runtime instead of compile time.

Malloc()

A standard library function in C that allocates a specified amount of memory and returns a pointer to the beginning.

Calloc()

A library function in the C programming language that allocates memory space for an array of elements, initializes them to zero, and returns a pointer to the allocated memory.

Related Questions