well im not sure bt i guess one possible reason could be that struct yy is a member of struct xx..so a pointer of struct yy cannot be declared widout ref to xx...
On Wed, Jul 27, 2011 at 9:52 PM, Aman Goyal <[email protected]> wrote: > #include‹stdio.h› > main() > { > struct xx > { > int x; > struct yy > { > char s; > struct xx *p; > }; > struct yy *q; > }; > } > > ouput: compiler error. > > Any logical reasons? > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- Aditi Garg Undergraduate Student Electronics & Communication Divison NETAJI SUBHAS INSTITUTE OF TECHNOLOGY Sector 3, Dwarka New Delhi 9718388816 -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
