Interviewer And Interviewee Guide

C Pointers Interview Question:

Explain void pointer?

Submitted by: Muhammad
A void pointer is a C convention for "a raw address." The compiler has no idea what type of object a void pointer "really points to." If you write
int *ip;
ip points to an int. If you write
void *p;
p doesn't point to a void!
Submitted by: Muhammad

Read Online C Pointers Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.