Why should we typedef a struct so often in C? - Stack Overflow
I have seen many programs consisting of structures like the one below typedef struct { int i; char k; } elem; elem user; I have seen this many times. Why is it needed so often? Any ......