Quantcast
Viewing all articles
Browse latest Browse all 10

Void pointers in C

Void pointers are pointers pointing to some data of no specific type. A void pointer is defined like a pointer of any other type, except that void* is used for the type: You can’t directly dereference a void pointer; you must cast it to a pointer with a specific type first, for instance, to a [...]

Viewing all articles
Browse latest Browse all 10

Trending Articles