ne1 having any idea about double pointer(not of the data type double)?
This is a discussion on double pointers? within the C++ Programming forums, part of the General Programming Boards category; ne1 having any idea about double pointer(not of the data type double)?...
ne1 having any idea about double pointer(not of the data type double)?
once a kohatian,always a kohatian!
It's a pointer to a pointer. You can use it for example to create 2D arrays.
char **2darray;