adplus-dvertising
frame-decoration

Question

What is the issue with recovering array versus data structure information?

a.

The compiler produces identical assembly language code for accessing arrays and data structures

b.

Arrays are usually accessed via loops, making it difficult to determine if a pointer represents an array or data structure

c.

Decompilers cannot determine if a pointer represents an array or data structure

d.

There are no exceptions to accessing array items using hard-coded indexes

Posted under Reverse Engineering

Answer: (a).The compiler produces identical assembly language code for accessing arrays and data structures Explanation:The problem with recovering array versus data structure information is that compilers typically produce identical assembly language code for accessing arrays and data structures when arrays are accessed using hard-coded indexes.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the issue with recovering array versus data structure information?