In C (not C++/C#) how do I check if a variable is of a certain type. For example something like this:
double doubleVar;
if( typeof(doubleVar) == double ) {
printf("doubleVar is of type double!");
}
Or more general: How do I compare two types so that compare(double1,double2) will evalute true and compare(int,double) will evaluate false. Also I'd like to compare structs of different composition as well. Thanks for any help.
Edit:
Basically I have a function that operates on variables of type "struct a" and "struct b". I want to do one thing with the "struct a" variables and the other with the "struct b" variables. Since C doesn't support overloading and the void pointer losses its type information I need to check for type. Btw. what would be the sence in having a typeof operator, if you can't compare types?
Edit2: The sizeof-method seems to be a practical workaround solution for me. Thanks for your help. I still find it a bit strange since the types are know at compiletime but if I imagine the processes in the machine I can see, why the information is not stored in terms of types but rather in terms of byte size. Size is the only thing really relevant besides addresses.
0.00)? Not sure if this is possible in C, just a suggestion. – Kevin Jun 8 '11 at 14:13