rename to desserts

This commit is contained in:
Jidong Xiao
2023-09-19 21:35:30 -04:00
parent 6c2234d0f8
commit 98625fc4b6

View File

@@ -0,0 +1,10 @@
bool** cake;
bool pie;
bool fudge;
pie = true;
cake = new bool*[5];
cake[1] = &pie;
bool* donut = new bool;
*donut = false;
cake[2] = donut;
cake[4] = &fudge;