What does the {???} mean in the VC++ Watch window?

2019-06-13 19:52发布

I am debugging a C project with Visual Studio 2013. What does the {???} mean in the below Watch window?

enter image description here

I guess there must be something wrong and I searched a bit. But no luck.

1条回答
贼婆χ
2楼-- · 2019-06-13 20:21

Igor’s suggestion is correct, this is the sample for this issue.

If I disable the line code “currnode->nextnode = NULL;”, it will show the same result as yours.

enter image description here

But if I enable it, it would show the NULL value like this screen shot, so it would be related to null value of the pointer. enter image description here

查看更多
登录 后发表回答