/* Program to test the precedence
   in arithmentic expressions     */
#include <stdio.h>
#include <math.h>

int main()
{
   int i=5, j=10,k;

   {
   k = i+j/i*2;
   printf("%d \\ \" \n",k);
   }

   {
   k = (i+j)/i*2;
   printf("%d\n",k);
   }

   {
   k = i>j;
   printf("test1 %d\n",k);
   k = 3>2;
   printf("test2 %d\n",k);
   }

   k = i<j && i==5 || j<5;
   printf("%d\n",k);

   k = ++i*j++; 
   printf("%d\n",k);

   return(0);
}

