From 604718ac28df070e468afddc9e5c385a7091b0c4 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 18 Sep 2023 21:55:28 -0400 Subject: [PATCH] 2nd try of code and png side by side --- lectures/06_memory/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lectures/06_memory/README.md b/lectures/06_memory/README.md index 0302bf9..74d3d10 100644 --- a/lectures/06_memory/README.md +++ b/lectures/06_memory/README.md @@ -29,7 +29,7 @@ Dynamic memory is:
-```cpp +
 int * p = new int;
 *p = 17;
 cout << *p << endl;
@@ -44,7 +44,7 @@ p = temp;
 cout << *p << " " << *q << endl;
 delete p;
 delete q;
-```
+
heap