From aba206b97fc698c0a10cecf767a61e294c12125d Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 11 Sep 2023 21:16:24 -0400 Subject: [PATCH] adding the missing : --- lectures/04_pointers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/04_pointers/README.md b/lectures/04_pointers/README.md index f3955b9..3b3ea8f 100644 --- a/lectures/04_pointers/README.md +++ b/lectures/04_pointers/README.md @@ -44,7 +44,7 @@ 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](https//jidongxiao.github.io/CSCI1200-DataStructures/animations/pointers/example1/index.html). +- play this [animation](https://jidongxiao.github.io/CSCI1200-DataStructures/animations/pointers/example1/index.html). ## 4.3 Defining Pointer Variables