I have a very simple question.
I want to write the below line of code in 2 lines :
IplImage *image = 0;
like :
IplImage *image;
image = 0;
I want to know what I have written is correct or else I want to know how to write the correct one (in two lines).
Thanks
IplImagestructure, not to anint. The literal0is defined by the C++ language as the source code notation for a NULL pointer, it is not used as an integer. Using any other integer would cause a compile error.IplImage *image(0);?