432 B
432 B
-
Suppose that the following declarations are in effect:.... a.
14b.34c.4d.truee.false -
Suppose that
high,low, andmiddleare all pointer variables of the same type, and thelowandhighpoint to elements of an array. Why is the following statement illegal, and how could it be fixed?
middle = (low + high) / 2
The above statement is illegal because you can't add two pointers together