From 929e1a5e4d33ce3e05b89acba362755c02f4e29f Mon Sep 17 00:00:00 2001 From: lukas Date: Wed, 22 Apr 2020 11:00:37 +0200 Subject: [PATCH] edited code example --- src/main.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tex b/src/main.tex index f3704e9..d3b225d 100644 --- a/src/main.tex +++ b/src/main.tex @@ -202,7 +202,7 @@ int main() int *p; //Assigning address of num to the pointer p - p = # + p = *num; printf("Address of variable num is: %p", p); return 0;