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 the significance of scope resolution operator?
What are the various types of control structures in programming?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Explain what is a program flowchart and explain how does it help in writing a program?
What is the role of && operator in a program code?
What is indirection?
What is static memory allocation? Explain
How can I invoke another program or command and trap its output?
Why c is faster than c++?
Can you subtract pointers from each other? Why would you?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is 02d in c?
What is getch () for?
What does *p++ do?