diff --git a/content/notes/09-intro-to-c-2.md b/content/notes/09-intro-to-c-2.md new file mode 100644 index 000000000..d5a7f429e --- /dev/null +++ b/content/notes/09-intro-to-c-2.md @@ -0,0 +1,20 @@ +--- +title: "09-intro-to-c-2" +aliases: +tags: +- cosc204 +--- + +# Variables + +``` +va memory[3] +*va memory[memory[3]] +**va memory[memory[memory[3]]] +``` + +`*` is known as **dereferncing** +`**` is known as **double-dereferncing** + + +