From 8a21fe58f1500e1d7bdcf76909b9d21f447044bf Mon Sep 17 00:00:00 2001 From: owlhoo <35279526+owlhoo@users.noreply.github.com> Date: Wed, 2 Jan 2019 17:14:33 +0100 Subject: [PATCH] Update index.md (#26416) --- guide/english/c/pointers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/pointers/index.md b/guide/english/c/pointers/index.md index 2d21483d4c..4b5d4547a1 100644 --- a/guide/english/c/pointers/index.md +++ b/guide/english/c/pointers/index.md @@ -2,7 +2,7 @@ title: Pointers --- # Pointers in C -By now you should be aware that C is a low-level language, and nothing shows that better than pointers. Pointers are variables that get you the variable value by "pointing" to a memory location rather than storing the value of the variable itself. This allows for some handy tricks, and is also what gives us access to arrays and file handling, among other things. +By now you should be aware that C is a low-level language, and nothing shows that better than pointers. Pointers are variables that get you the variable value by "pointing" to a memory location rather than storing the value of the variable itself. Pointers are actually the values of memory adress in hex, like adresses of your own house, i.e. pointer would be the address of your house while the value of which pointers points to would be the house itself. This allows for some handy tricks, and is also what gives us access to arrays and file handling, among other things. # ```