Tuesday 13 November 2012

Void Pointer example in c language


 How to use of void pointer in c language
include header files
main()
{
int a=10,*j;
void *k;
j=k=&a;
j++;
k++;
printf("\n %u %u ",j,k);
}
Explanation:

Void pointers are generic pointers and they can be used only when the type is not known and as an intermediate address storage type.
No pointer arithmetic can be done on it and you cannot apply indirection operator (*) on void pointers.
Share This
Previous Post
Next Post

FYJC XI standard online admisson Process and declaraton of Merit list . Cut off List For prevous year also . 10 Th Results onlne declaraton Maharashtra Region .

0 comments: