Computer Science, asked by akhilaki1208, 23 days ago

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​

Answers

Answered by ektamalhotra86
0

Answer:

Answer:

112

Explanation:

Pointer adress = 100

If ptr points to an integer (assuming 4 bytes), ptr + 3 means 3 integers (12 bytes) after ptr

Explanation:

Similar questions