In C, it is possible to have array of all types except following.
1) void.
2) functions.
For example, below program throws compiler error
int main()
{
void arr[100];
}
Output:
error: declaration of 'arr' as array of voids
But we can have array of void pointers and function pointers. The below program works fine.
int main()
{
void *arr[100];
}
See examples of function pointers for details of array function pointers.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 May, 2017
Like Article
Save Article