PT[101]% bison -d -y postfix.y PT[102]% flex ch3-01.l PT[103]% !gcc gcc y.tab.c lex.yy.c -ll -ly PT[104]% ./a.out 3 + 4 3 4 + PT[105]% ./a.out 3 + 4 * 5 3 4 5 * + PT[106]% ./a.out (3 + 4) * 5 3 4 + 5 * PT[107]% ./a.out 3 + (4 + 7 * 9) / 2 - 8 3 4 7 9 * + 2 / + 8 - PT[108]%