How to know the type of a variable in C ?
I tried sizeof() but i'm not convinced by the answer and i don't know how to use typeof() in C.
Some help ?
If we have for example :
int i ;
then what is the type of ('A' + i). i though i can do something like
printf("%s", typeof('A' + i));
to display the right type of my expression but i don't kwon how work a gcc expression.
Help please !