Q:

WHAT IS VOID POINTER IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT IS VOID POINTER IN C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Void pointer is a generic pointer that can be used to point another variable of any data type.

Void pointer can store the address of variable belonging to any of the data type. So, void pointer is also called as general purpose pointer.

Note:
int pointer can be used to point a variable of int data type and char pointer can be used to point a variable of char data type.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT IS DANGLING POINTER IN C?... >>
<< WHAT IS NULL IN C?...