Asked by Vellanira Macado on Jun 14, 2024

verifed

Verified

The address operator in C is ____.

A) &
B) *
C) ->
D) ") "

Address Operator

In programming, it is a unary operator (often denoted by &) that gives the address in memory of its operand.

  • Become familiar with the rules and implications of pointer and array operations within C programming.
verifed

Verified Answer

AK
Alexandria KalliomaaJun 20, 2024
Final Answer :
A
Explanation :
The address operator in C is "&", which is used to determine the address of a variable.