I simply want to know what is the right way of declaring a pointer.
1 2
int *ptr1; //This is vulnerable.
int *ptr2 = 0; //This is wrong.
Mostly because I keep getting "warning: zero as null pointer constant". Which means that it's not entirely legal and I'm not certain whether I should initialize it as null or nullptr.