Expert,
I want to have a array pointer to different type, how can I do it in C?
For example, array[10]
array[1] is point to another char[1024]
array[2] is point to an int type
array[3] is point to another char[1024]
array[4] is point to a bool type
How can I do that?
Start Free Trial