Name: Anonymous 2006-03-06 10:27
void* ptr;
void *ptr;
void * ptr;
Since every compiler accepts every one of them, which one do you think is the most correct?
I go with void* ptr.
void *ptr;
void * ptr;
Since every compiler accepts every one of them, which one do you think is the most correct?
I go with void* ptr.