Q. What is error in following declaration?struct outer{ int a;struct inner{char c;};}; (Solved)
1. nesting of structure is not allowed in c
2. it is necessary to initialize the member variable
3. inner structure must have name
4. outer structure must have name
- c. inner structure must have name