Answer Posted / sanjay bhosale
Void pointer is the pointer which can point to any type of variable.
e.g
int a=10;
float b=20.00f;
void *ptr=null;
ptr = &a;
ptr = &b;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a floating point in c?
What is infinite loop?
What does 4d mean in c?
What are enums in c?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is structure and union in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between text and binary i/o?
What is string concatenation in c?
write a program to concatenation the string using switch case?
What is dynamic memory allocation?
What is the scope of global variable in c?
How can variables be characterized?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
How do we open a binary file in Read/Write mode in C?