What if we try to print dangaling pointer? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What if we try to print dangaling pointer?

#include <stdio.h> #include<stdlib.h> int main() { int* p=(int*)malloc(sizeof (int)); printf ("%d",*p); return 0; } https://code.sololearn.com/c3lm96MGZL7a/?ref=app https://code.sololearn.com/c3lm96MGZL7a/?ref=app

29th Sep 2020, 2:05 PM
Dershil Jadav
Dershil Jadav - avatar
12 Answers
+ 10
By the term "dangaling pointer" do you intend "dangling pointer"? If so, do you mean a pointer that is uninitialized? If so, then you should presume the result will be unpredictable because the pointer will have whatever value was in memory at the time that its variable space was assigned. Or do you mean a pointer whose reference memory has been freed? Again you should presume the result will be unpredictable. Though immediately it is likely that the memory will hold the same information as before it was freed, eventually some process will allocate that space and overwrite it. Let us know whether this answers your question, or you meant something else.
29th Sep 2020, 2:31 PM
Brian
Brian - avatar
+ 5
That's not a dangling pointer. Your code have no dangling pointer.. You just initialized memory and it's assigned a default value.. Edit : Dershil Jadav see this for what is dangling pointer and the precedings for accessing of those pointers in Program.. https://developerinsider.co/what-is-dangling-pointer-with-cause-and-how-to-avoid-it/amp/
29th Sep 2020, 3:12 PM
Jayakrishna 🇮🇳
+ 4
Please show your code. Nobody can say without knowing what the code is doing.
29th Sep 2020, 2:55 PM
Brian
Brian - avatar
+ 4
Now with the code added to the question I see that this is a slightly different situation. Memory is allocated, but uninitialized. Yet it appears initialized anyway because it holds zero. While zero is a typical value to expect for initialized memory (for example, from calloc), it is not necessarily a reliable result to expect from malloc. It could be a different value at another time, leftover from some previous use of that memory.
29th Sep 2020, 3:14 PM
Brian
Brian - avatar
+ 4
After another edit to the linked code we do see a genuine dangling pointer because it is freed and then used again afterward to print the deallocated memory (and still uninitialized). I think we have covered this topic. If you are uncertain about this still, then read the article linked by Jayakrishna🇮🇳. It is critically important to understand.
29th Sep 2020, 3:33 PM
Brian
Brian - avatar
+ 3
You may get a segmentation fault.
1st Oct 2020, 11:34 AM
Sonic
Sonic - avatar
+ 3
Your program may crash.
1st Oct 2020, 11:34 AM
Sonic
Sonic - avatar
+ 1
Expect undefined behaviour as well as output I guess?
29th Sep 2020, 2:29 PM
Ipang
0
No I got my ans but I tried to print that but it gives output of 0 why that so...??
29th Sep 2020, 2:51 PM
Dershil Jadav
Dershil Jadav - avatar
0
Done check it
29th Sep 2020, 3:03 PM
Dershil Jadav
Dershil Jadav - avatar
29th Sep 2020, 3:04 PM
Dershil Jadav
Dershil Jadav - avatar
0
Now check
29th Sep 2020, 3:20 PM
Dershil Jadav
Dershil Jadav - avatar