From 35b709d7ffb3ae682a2cdf2c5fb5a312f90d6661 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Mon, 21 Oct 2024 14:55:31 -0600 Subject: [PATCH] vault backup: 2024-10-21 14:55:31 --- education/software development/ECE1400/C.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/C.md b/education/software development/ECE1400/C.md index 7bb2ca9..d5589af 100644 --- a/education/software development/ECE1400/C.md +++ b/education/software development/ECE1400/C.md @@ -49,7 +49,8 @@ int arr_size = sizeof(arr) / sizeof(arr[0]); ``` # Pointers - +`&` gives you the address of a variable +`*` gives you the value in memory that an address points to. # Formatting specifiers