operator precedence in c++

Operator Precendence in C++
-----------------------------------------------------------------------------------------------
Precedence   Operator	                        Description	              Associativity    
-----------------------------------------------------------------------------------------------
 1           ::                                 scope Resolution          Left to right        
-----------------------------------------------------------------------------------------------
 2           a++ a--                            Postfix incre/decre       Left to right         
             type() type{}                      Functioncal cast                    
             a()                                function call                     
             []                                 subscript                         
             -> .                               Member Access                     
-----------------------------------------------------------------------------------------------
 3           ++a --a                            Prefix incre/decre        Right to left
             + -                                Unary	                           
             ! ~                                Logical NOT,bitwise NOT            
             (type)*                            C-style typecast                      
               &                                Address of                        
             sizeof                             size-of                                       
             co_await                           await expression                       
             new new[]                          Dynamic memory allocation                                  
             delete delete[]                    Dynamic memory De-allocation                                             
-----------------------------------------------------------------------------------------------
 4            . * ->*                           pointer to member         Left to right 
 5            * / %	                            Multiplicative	                 
 6            + -	                            Additive	                       
 7            << >>	                            Shift	                         
 8            <=>                               Three way comparsion                            
 9            < <= > >=	                        Relational	                     
 10           == !=	                            Equality	                     
 11           &	                                Bitwise AND     	             
 12           ^                                 Bitwise XOR     	               
 13           |	                                Bitwise OR	              
 14           &&	                            Logical AND	              
 15           ||	                            Logical OR	               
----------------------------------------------------------------------------------------------
 16           ?:	                            Conditional	              Right to left
              throw                             Throw Operator
              co_yield                          yield Expression
                 =                              Assignment
              += -= *= /= %=>>= <<= &= ^= |=    Compound Assignment	
 ---------------------------------------------------------------------------------------------      
 17            ,	                            Comma	                  Left to right
----------------------------------------------------------------------------------------------         

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source