User Tools

Site Tools


cplusplus:pointers_3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cplusplus:pointers_3 [2014/04/29 21:55] – [Pointer arithmetic] mithatcplusplus:pointers_3 [2016/03/05 23:27] (current) – [Pointers 3] mithat
Line 1: Line 1:
 ====== Pointers 3 ====== ====== Pointers 3 ======
  
-Pointers, arrays, arithmetic.((Portions loosely adapted from: FIXME))+Pointers, arrays, arithmetic.
  
 ===== Pointers and arrays ===== ===== Pointers and arrays =====
Line 42: Line 42:
  
 <file cpp pointer-math.cpp> <file cpp pointer-math.cpp>
-/** Pointer arithmetic with integers. */+/** Pointer arithmetic. */
 #include <iostream> #include <iostream>
 using namespace std; using namespace std;
Line 97: Line 97:
     int *vPtr = v;     int *vPtr = v;
  
-    for(int i = 0; i < 5; i++)+    for (int i = 0; i < 5; i++)
     {     {
         cout << *vPtr << endl;         cout << *vPtr << endl;
Line 150: Line 150:
  
 ^ Operation                                                        ^ Example ^ ^ Operation                                                        ^ Example ^
-|<code>{pointer}++</code>                                          |<code cpp>valptr++;  // points at 7</code>+|Increment <code>pointer++</code>                                          |<code cpp>valptr++;  // points at 7</code>
-|<code>{pointer}--</code>                                          |<code cpp>valptr--;  // now points at 4</code>+|Decrement <code>pointer--</code>                                          |<code cpp>valptr--;  // now points at 4</code>
-|<code>{pointer{int}</code>and<code>{pointer{int}</code>   |<code cpp>cout << *(valptr + 2); // prints 11</code>+|Arithmetic <code>pointer + int</code> and <code>pointer - int</code> |<code cpp>cout << *(valptr + 2); // prints 11</code>
-|<code>{pointer+= {int}</code>and<code>{pointer-= {int}</code> |<code cpp>valptr = vals; // points at 4+|Compound assignment <code>pointer += int</code>and<code>pointer -= int</code> |<code cpp>valptr = vals; // points at 4
 valptr += 2;   // points at 11</code> | valptr += 2;   // points at 11</code> |
-|<code>{pointer{pointer}</code>                                |<code cpp>cout << valptr - val; // number of ints between valptr and val</code> |+|Pointer subtraction <code>pointer - pointer</code>                                |<code cpp>cout << valptr - val; // of ints between valptr and val</code> |
  
cplusplus/pointers_3.1398808501.txt.gz · Last modified: 2014/04/29 21:55 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki