#include<stdio.h>
void fun(void *x)
{
//what is the data type of 'x', since I could have passed float instead of
// int so first I have to check datatype of this and then proceed further.
}
int main()
{
int n=10;
fun(&n);
}
関数 fun() の 'x' の型がわからないことがわかります。では、関数の引数で他の情報を使用 (渡す) せずに、どうすればそれを見つけることができるでしょうか?