Meaning of int(0) in int *pi = new int(0); ?

Posted by understack on Stack Overflow See other posts from Stack Overflow or by understack
Published on 2010-06-16T18:58:13Z Indexed on 2010/06/16 19:02 UTC
Read the original article Hit count: 89

Filed under:
|
int *pi = new int(0); 

What's the significance of 0 here? Does it mean integer array of length 0?

© Stack Overflow or respective owner

Related posts about c++

Related posts about beginner