Why should we typedef a struct so often in C? - Stack Overflow

Why should we typedef a struct so often in C? - Stack Overflow

瀏覽:1500
日期:2026-04-21
It's amazing how many people get this wrong. PLEASE don't typedef structs in C, it needlessly pollutes the global namespace which is typically very polluted already in large C programs. Also, typedef'd structs without a tag name are a major cause of needl...看更多