int *pi = new int(0);
What's the significance of 0 here? Does it mean integer array of length 0?
What's the significance of 0 here? Does it mean integer array of length 0? |
||||
|
|
It is an initializer (constructor parameter). The newly created int will have value of |
|||||||||||||
|
|
It means you want a pointer to an I once lost far too long on a bug that turned out to be someone wrote |
|||
|
|
|
To me, the significance of 0 is also that somebody is saying,
rather than some 'default value' which [edit] |
|||||||
|
|
No it does not mean an array of size 0. it just means a value of 0 is assigned for the int value for which the pointer that is pi. |
|||||||||||
|