8
What is the meaning of calling a function with one that was int
and is passed as (void *)
?
If variable was declared as int
because it is passed as a parameter to a function
*(void *)variavel*
?
Example
int var = 10;
teste((void *)var);