summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-06-28 19:50:29 -0700
committerAdam Bard <github@adambard.com>2013-06-28 19:50:29 -0700
commit58d8059fce1d2522f9e33c651ddbc7259b2c8e78 (patch)
tree274cc3813d563561d0ffceea49440c79ac08eb61
parent86273dec2fafff150f3d07865237e9e499889fff (diff)
parentdb168d11be3306c88eb90f775fda15fcafe3ce82 (diff)
Merge pull request #32 from kaimallea/master
Modifications to comments and example addition to pointers section
-rw-r--r--c.html.markdown28
1 files changed, 22 insertions, 6 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 15bfa05e..36bd07fd 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -194,26 +194,42 @@ printf("%d\n", (short) 65537); // => 1 (Max short = 65535)
// Pointers
///////////////////////////////////////
-// You can retrieve the memory address of your variables,
-// then mess with them.
+// A pointer is a variable declared to store a memory address. Its declaration will
+// also tell you the type of data it points to. You can retrieve the memory address
+// of your variables, then mess with them.
int x = 0;
printf("%p\n", &x); // Use & to retrieve the address of a variable
// (%p formats a pointer)
// => Prints some address in memory;
+// Pointer types end with * in their declaration
+int* px; // px is a pointer to an int
+px = &x; // Stores the address of x in px
+printf("%p\n", px); // => Prints some address in memory
+
+// To retreive the value at the address a pointer is pointing to,
+// put * in front to de-reference it.
+printf("%d\n", *px); // => Prints 0, the value of x, which is what px is pointing to the address of
+
+// You can also change the value the pointer is pointing to.
+// We'll have to wrap the de-reference in parenthesis because
+// ++ has a higher precedence than *.
+(*px)++; // Increment the value px is pointing to by 1
+printf("%d\n", *px); // => Prints 1
+printf("%d\n", x); // => Prints 1
+
int x_array[20]; // Arrays are a good way to allocate a contiguous block of memory
int xx;
for(xx=0; xx<20; xx++){
x_array[xx] = 20 - xx;
} // Initialize x_array to 20, 19, 18,... 2, 1
-// Pointer types end with *
+// Declare a pointer of type int and initialize it to point to x_array
int* x_ptr = x_array;
-// This works because arrays are pointers to their first element.
+// This works because an array name is bound to the address of its first element
-// Put a * in front to de-reference a pointer and retrieve the value,
-// of the same type as the pointer, that the pointer is pointing at.
+// Arrays are pointers to their first element
printf("%d\n", *(x_ptr)); // => Prints 20
printf("%d\n", x_array[0]); // => Prints 20