what is void pointer?

Answer Posted / rajesh

Void pointer is the
pointer which itself is
null and can not be
interchanged by others.
Ex-
{
int *a;
void *b;

*a=*b; //valid
a=b; //invalid
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is void main ()?

603


what is event driven software and what is procedural driven software?

2003


Does c have enums?

590


Is null equal to 0 in sql?

639


What are the features of c language?

611






hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

1624


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3493


What is a MAC Address?

619


Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

1512


How arrays can be passed to a user defined function

565


What is null pointer constant?

586


Write programs for String Reversal & Palindrome check

590


How do you determine the length of a string value that was stored in a variable?

642


What is an arrays?

643


How can you access memory located at a certain address?

656