The following code (taken from here):
int* ptr = int();
compiles in Visual C++ and value-initializes the pointer.
How is that possible? I mean int() yields an object of type int and I can't assign an int to a pointer.
How is the code above not illegal?

int()yields the value constructed value ofint(which is I think a C++03 specified thing) and the default value ofintis0. This is equivalent toint *ptr = 0;– birryree Nov 9 '11 at 16:13NULLcould be a non-zero value. I said it could be any zero-valued integer constant (which includesint()). – Mike Seymour Nov 9 '11 at 16:57