What is true about the variable named ptr?
ptr
void *ptr;
It is a pointer to a value with no specific type, so it may be cast to point to any type.
That declaration causes a compiler error, as pointers must specify a type.
It is a pointer to a void function.
It is a pointer initialized at NULL.