suppose we have a pointer to float data type
which contains the memory address value
100.if we add the integervalue 3 to this
pointer what will be the value of the pointer if
float data type are 4 bytes in length 8:39 pm
Answers
Answered by
3
Answer:
112
Explanation:
Pointer adress = 100
If ptr points to an integer (assuming 4 bytes), ptr + 3 means 3 integers (12 bytes) after ptr
Similar questions