edited code example

This commit is contained in:
lukas 2020-04-22 11:00:37 +02:00
parent 2c8f589227
commit 929e1a5e4d

View File

@ -202,7 +202,7 @@ int main()
int *p; int *p;
//Assigning address of num to the pointer p //Assigning address of num to the pointer p
p = # p = *num;
printf("Address of variable num is: %p", p); printf("Address of variable num is: %p", p);
return 0; return 0;