Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in void-pointers

can void* be used to store function pointers? [duplicate]

%p format specifier needs explicit cast to void* for all types but char* in printf

How to make generic function using void * in c?

c void-pointers

When is uintptr_t preferred over intptr_t?

c pointers void-pointers

C++, does bool conversion always fall back to implicit conversion to void*?

Casting void pointers

c pointers void-pointers

Explicit void pointer as function parameter

c++ c++11 c++14 void-pointers

Is ((void *) -1) a valid address?

c void-pointers

Mental model for void* and void**?

c++ c void-pointers

Using intptr_t instead of void*?

Is it undefined behaviour to delete a null void* pointer?

Converting a void* to a std::string

c: size of void*

c void-pointers

Warning: cast to/from pointer from/to integer of different size

What does this mean: a pointer to void will never be equal to another pointer?

c pointers void-pointers

casting via void* instead of using reinterpret_cast [duplicate]

dynamic_cast from "void *"

Is there a way to avoid implicit conversion to void*?

What is a void pointer and what is a null pointer?

What does "typedef void (*Something)()" mean