postfix_exp Production

Definition

postfix_exp : primary_exp
            | postfix_exp [ exp ]
            | postfix_exp ( type_exp_list )
            | postfix_exp ( )
            | postfix_exp . identifier
            | postfix_exp -> identifier
            | postfix_exp ++
            | postfix_exp --

Purpose

A postfix_exp represents expressions with postfix operators.