In a C program,” &i” indicates the __________ of the variable ‘i’ in the
memory.
Answers
Answered by
0
Answer:
The expression &i returns the address of the variable i , which in this case happens to be 65524. Since 65524 represents an address, there is no question of a sign being associated with it. Hence it is printed out using %u , which is a format specifier for printing an unsigned integer.
Similar questions