From d56d1106dcc6bc653567ae0f8a770d0390fdaaae Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 11 Sep 2023 21:14:13 -0400 Subject: [PATCH] incorporate the animation link --- lectures/04_pointers/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lectures/04_pointers/README.md b/lectures/04_pointers/README.md index 4477753..71ca87a 100644 --- a/lectures/04_pointers/README.md +++ b/lectures/04_pointers/README.md @@ -44,6 +44,8 @@ memory location, and store 72 there. This writes the 72 in x’s location. Note: *p is an l-value in the above expression. +- play this [animation](../../animations/pointers/example1/index.html) + ## 4.3 Defining Pointer Variables - In the example below, p, s and t are all pointer variables (pointers, for short), but q is NOT. You need the *