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/) +