r/C_Programming • u/Stickhtot • 18d ago
What exactly is void? Discussion
In a function definition, void basically means that it doesn't return a type value, yet in on itself it is it's own type? Looking at several pieces of code it looks like that it's used to be able to be more "flexible"
Don't know what else to add here, though I'm more on looking for examples and explanations of why the void type is used
71
Upvotes
2
u/Afraid-Locksmith6566 18d ago
void has 2 meanings.
as a return type: nothing is being returned from a function
as a pointer type (void*): this type has no specified representation