I think, it should be C & D; a = i++ => a=i; i = i+1; a = ++i; => i = i+1; a = i;
in similar fashion, D gets affected. @ Raj...how come?? On Tue, Aug 30, 2011 at 8:11 PM, raj kumar <[email protected]> wrote: > code becomes more efficient > > -- > 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. > -- 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.
