The information in this article applies to:
SUMMARYThe text below presents an example of a common programming mistake, that is, confusing an array and a pointer declaration: Consider an application divided into several modules. In one module, declare an array as follows:In another module, declare the following variables to access the array: MORE INFORMATIONThe following declarations are NOT the same:
The first declaration allocates memory for a pointer; the second
allocates memory for 20 characters.
A picture of pc and ac in memory might appear as follows:
Neither are the following the same:
The first declaration indicates that another module allocated either two or
four bytes for a pointer to char named pc while the second indicates that
another module allocated an array (of some unspecified length) named ac.
The steps required to address pc[3] and ac[3] are different. The one similarity is that the expression "ac" is a constant pointer to char that points to &ac[0]. To evaluate pc[3], load the value of the pointer pc from memory and add 3. Then load the character stored ad this location (pc + 3) into a register. Assuming the small memory model, the appropriate MASM code might look like the following:
An appropriate diagram might appear as follows, provided that pc has been
set to point to an array at location 1234 and that the first four positions
of the array contain the string "abcd":
NOTE: If you use pc without first initializing it properly causes your
application to access random memory which can cause undesired behavior. To
initialize the pointer, include a line of code such as "pc = malloc(5);" or
"pc = ac;".
Because ac is a constant, it can be stored in the final MOV instruction, which eliminates two MOV instructions. The MASM code might look like the following:
The corresponding picture might appear as follows:
NOTE: If you first initialize pc to point to ac (by including the line "pc
= ac;" in your application), then the end result of the two statements is
identical. To see this in the picture, set pc to contain the address of ac,
1100. However, the instructions used to generate these effects are quite
different.If you declare ac as follows, the compiler generates code to perform pointer-type addressing rather than array-type addressing:
The compiler uses the first few bytes of the array as an address (rather
than as characters) and accesses the memory stored at that (unintended)
location.
Additional query words: 8.00
Keywords : kbLangC kbVC100 kbVC150 kbVC151 kbVC152 kbVC200 kbVC210 kbVC400 kbVC500 kbVC600 |
Last Reviewed: July 1, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |