f=++i||(k++)&&1 ;
how are such expressions evaluated??
in my code this k never got incremented (i!=-1)
incremnt and decrement operators have higher precedence than && and || then shouldn't this mean that all these unary operators are evaluated in a logical expression
how are such expressions evaluated??
in my code this k never got incremented (i!=-1)
incremnt and decrement operators have higher precedence than && and || then shouldn't this mean that all these unary operators are evaluated in a logical expression
Comment