top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

If you are using C language to implement the heterogeneous linked list, what pointer type will you use?

+1 vote
753 views
If you are using C language to implement the heterogeneous linked list, what pointer type will you use?
posted May 19, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Use [void *] type pointer.
One thing you need to remember that before using that pointer you have to typecast it.

answer May 20, 2015 by Arshad Khan
...