Does context dependent means a single operator having different meaning when used in different contexts or scenarios??? If so then * is dereferencing operator for pointers and also an arithmetic operator as *a pointer dereference and a*b multiplication
and & (bitwise and) and also address operator if used as int *a=&a and # is used for concatenation as s1##s2 or to keep the name as it is we use #s1 Correct me if i am wrong On Mon, Aug 15, 2011 at 6:45 PM, aditi garg <[email protected]>wrote: > Pick the operators whose meaning is context dependent? > 1. * > 2.# > 3.& > 4.No such operator exists > Plz gv the diff contexts if applicable... > > -- > 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. > > -- Regards Rajeev N B <http://www.opensourcemania.co.cc> "*Winners Don't do Different things , they do things Differently"* -- 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.
