/* This example shows the priority of evaluating
   expessions. First calculation is without brackets
   so the multiplication has greater priority than
   addition and subtraction. The second case includes
   brackets, so the pririty has changed.
   The results are 8 and 5.
*/


int a,b;

void main() {
 a=3+2*4-3;		/* First case */
 b=(3+2)*(4-3);		/* Second case */
 printf(a);
 printf(b);
}