in Programming in C
2,625 views
2 votes
2 votes
let x be an array of integer . which of the following can not be present in the left hand side of an assignment statement

a)x   b) x+i   c) * (x+i)  d) &x[i]
in Programming in C
2.6k views

2 Answers

1 vote
1 vote
Option D since it is attempting to manipulate base address of the array
0 votes
0 votes

a,b,d cannot be on left hand side because x is a constant pointer. You cannot modify its address.

reshown by

Related questions