Variables combined with && and ||
        Posted  
        
            by gcc
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by gcc
        
        
        
        Published on 2010-05-02T20:45:50Z
        Indexed on 
            2010/05/02
            20:57 UTC
        
        
        Read the original article
        Hit count: 178
        
c
|boolean-operations
What do the last lines mean?
a=0;
b=0;
c=0;
a && b++;
c || b--;
Can you vary this question to explain with more interesting example?
© Stack Overflow or respective owner