Pointers and Reference - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:40:00Z http://stackoverflow.com/feeds/question/107294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/107294/pointers-and-reference 4 Pointers and Reference Jose Vega 2008-09-20T05:46:34Z 2008-09-20T07:02:01Z <p>I understand the overall meaning of pointers and references(or at least I think i do), I also understand that when I use <b>new</b> I am dynamically allocating memory. My question is the following, if i were to use <b>cout &lt;&lt; &amp;p</b> it would display the "virtual memory location" of p. Is there a way in which I could manipulate the "virtual memory location?" The following code shows an array of ints, if I wanted to show the value of p[1] and I knew the "virtual memory location" of p, could I hypothetically do <b>&amp;p + 1</b> and obtain the value of p[1] by doing <b>cout &lt;&lt; *p</b>, since *p is now a pointer to the second element in the array.</p> <pre><code>int *p; p = new int[3]; p[0] = 13; p[1] = 54; p[2] = 42; </code></pre> http://stackoverflow.com/questions/107294/pointers-and-reference/107301#107301 5 Answer by KTC for Pointers and Reference KTC 2008-09-20T05:49:02Z 2008-09-20T05:57:11Z <p>Sure, you can manipulate the pointer to access the different elements in the array, but you will need to manipulate the content of the pointer (i.e. the address of what p is pointing to), rather than the address of the pointer itself.</p> <pre><code>int *p = new int[3]; p[0] = 13; p[1] = 54; p[2] = 42; cout &lt;&lt; *p &lt;&lt; ' ' &lt;&lt; *(p+1) &lt;&lt; ' ' &lt;&lt; *(p+2); </code></pre> <p>Each addition (or subtraction) mean the subsequent (prior) element in the array. If p points to a 4 byte variable (e.g. <em>int</em> on typical 32-bits PCs) at address say 12345, p+1 will point to 12349, and not 12346. Note you want to change the value of what p contains before dereferencing it to access what it points to.</p> http://stackoverflow.com/questions/107294/pointers-and-reference/107313#107313 2 Answer by freespace for Pointers and Reference freespace 2008-09-20T05:53:44Z 2008-09-20T05:58:58Z <p>Not quite. <code>&amp;p</code> is the address <em>of the pointer <code>p</code></em>. <code>&amp;p+1</code> will refer to an address which is one <code>int*</code> further along. What you want to do is </p> <pre><code>p=p+1; /* or ++p or p++ */ </code></pre> <p>Now when you do </p> <pre><code>cout &lt;&lt; *p; </code></pre> <p>You will get 54. The difference is, <code>p</code> contains the <em>address of the start of the array of ints</em>, while <code>&amp;p</code> is the <em>address of p</em>. To move one item along, you need to point further into the <em>int array</em>, not further along your stack, which is where <code>p</code> lives.</p> <p>If you only had <code>&amp;p</code> then you would need to do the following:</p> <pre><code>int **q = &amp;p; /* q now points to p */ *q = *q+1; cout &lt;&lt; *p; </code></pre> <p>That will also output 54 if I am not mistaken.</p> http://stackoverflow.com/questions/107294/pointers-and-reference/107316#107316 1 Answer by Guy for Pointers and Reference Guy 2008-09-20T05:54:25Z 2008-09-20T05:54:25Z <p>It's been a while (many years) since I worked with pointers but I know that if p is pointing at the beginning of the array (i.e. p[0]) and you incremented it (i.e. p++) then p will now be pointing at p[1].</p> <p>I think that you have to de-reference p to get to the value. You dereference a pointer by putting a * in front of it.</p> <p>So *p = 33 with change p[0] to 33.</p> <p>I'm guessing that to get the second element you would use *(p+1) so the syntax you'd need would be:</p> <pre><code>cout &lt;&lt; *(p+1) </code></pre> <p>or</p> <pre><code>cout &lt;&lt; *(++p) </code></pre> http://stackoverflow.com/questions/107294/pointers-and-reference/107351#107351 1 Answer by Adam Pierce for Pointers and Reference Adam Pierce 2008-09-20T06:11:23Z 2008-09-20T06:11:23Z <p>I like to do this:</p> <pre><code>&amp;p[1] </code></pre> <p>To me it looks neater.</p> http://stackoverflow.com/questions/107294/pointers-and-reference/107461#107461 0 Answer by Kevin Little for Pointers and Reference Kevin Little 2008-09-20T07:02:01Z 2008-09-20T07:02:01Z <p>Think of "pointer types" in C and C++ as laying down a very long, logical <strong>row of cells</strong> superimposed on the bytes in the memory space of the CPU, starting at byte 0. The width of each cell, in bytes, depends on the "type" of the pointer. Each pointer type lays downs a row with differing cell widths. A <code>"int *"</code> pointer lays down a row of 4-byte cells, since the storage width of an int is 4 bytes. A <code>"double *"</code> lays down a 8-byte per-cell row; a <code>"struct foo *"</code> pointer lays down a row with each cell the width of a single <code>"struct foo"</code>, whatever that is. The "address" of any "thing" is the byte offset, starting at 0, of the cell in the row holding the "thing".<br><br><strong>Pointer arithmetic is based on cells in the row, not bytes.</strong> "<code>*(p+10)</code>" is a reference to the 10th cell past "p", where the cell size is determined by the type of p. If the type of "p" is "int", the address of "p+10" is 40 bytes past p; if p is a pointer to a struct 1000 bytes long, "p+10" is 10,000 bytes past p. (Note that the compiler gets to choose an optimal size for a struct that may be larger than what you'd think; this is due to "padding" and "alignment". The 1000 byte struct discussed might actually take 1024 bytes per cell, for example, so "p+10" would actually be 10,240 bytes past p.)</p>