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