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 are header files in c?
Explain modulus operator. What are the restrictions of a modulus operator?
What are inbuilt functions in c?
Why we use break in c?
Which header file is used for clrscr?
What does nil mean in c?
Is calloc better than malloc?
How are 16- and 32-bit numbers stored?
Is c is a middle level language?
What is the difference between union and structure in c?
Who invented b language?
What are the modifiers available in c programming language?
develop algorithms to add polynomials (i) in one variable
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
swap 2 numbers without using third variable?