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 bubble sort technique in c?
write a program to find the given number is prime or not
Distinguish between actual and formal arguments.
int i=10; printf("%d %d %d", i, i=20, i);
What do you mean by a local block?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Explain how can I prevent another program from modifying part of a file that I am modifying?
Can the curly brackets { } be used to enclose a single line of code?
What are the back slash character constants or escape sequence charactersavailable in c?
Is int a keyword in c?
Write a program for finding factorial of a number.
What are the types of unary operators?
Explain how do you view the path?
Why we write conio h in c?