void¶
You can use void
as return type of function to specify that function not return any value.
-> void
is unnececary if return type is void
. You can use void
as return type of function to specify that function not return any value.
-> void
is unnececary if return type is void
.