From 499cce2e1aac1d353e8b973b557c4551ade408a0 Mon Sep 17 00:00:00 2001 From: nlather Date: Wed, 3 Apr 2019 14:10:12 +0530 Subject: [PATCH] added reference links (#27387) * added reference links * Update index.md --- guide/english/c/pointers/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/guide/english/c/pointers/index.md b/guide/english/c/pointers/index.md index de833f9f9d..034328d35b 100644 --- a/guide/english/c/pointers/index.md +++ b/guide/english/c/pointers/index.md @@ -380,3 +380,10 @@ Most of the time, pointer and array accesses can be treated as acting the same, p++; /*Legal, p points the next memory address*/ a++; /*illegal*/ ``` + + +## Links for reference: +[Pointers - CS50](https://www.youtube.com/watch?v=XISnO2YhnsY) + +[Pointers in C and C++ - GeeksforGeeks](https://www.geeksforgeeks.org/pointers-in-c-and-c-set-1-introduction-arithmetic-and-array/) +