Asked by khalid abualrob on Jun 24, 2024

verifed

Verified

The address stored in the array name cannot be changed by an assignment statement.

Array Name

The identifier given to a collection of similar types of data stored at contiguous memory locations.

Address

The specific location in memory where data or a function resides, which can be referenced or accessed.

Assignment Statement

An instruction in programming used to set a value for a variable.

  • Comprehend the link between pointers and the names of arrays.
verifed

Verified Answer

CW
Constance WilliamsJun 30, 2024
Final Answer :
True
Explanation :
The array name in C acts as a constant pointer to the first element of the array, and thus its address cannot be altered through assignment.