hello everyone I just wanted to know if we can declare the variable name as the name of the structure.
eg
typedef struct
{
char c;
}t;
then in some function i can use
fun()
{
t t;
}
Is this really so? if so, how does the compiler distinguish between them?
source
share