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
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Write the control statements in C language
How important is structure in life?
How can I find out how much free space is available on disk?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is meant by realloc()?
Define Array of pointers.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
List some of the dynamic data structures in C?
When c language was developed?
What is getche() function?
Explain modulus operator. What are the restrictions of a modulus operator?
Explain pointers in c programming?
how to find anagram without using string functions using only loops in c programming
What is derived datatype in c?