C Program Mathematics Logic

  1.    #include<stdio.h>  
  2.             main ( )  
  3.             {  
  4.                 //this program is logical maths calculation  
  5.             int *i, *j, a=12, b=2,c;  
  6.             c = (a=a+b, b=a/b, a=a*b, b=a-b);   // calcualte the c value arithmathices oprators  
  7.             i = &c;  
  8.             printf("%d",--(*i));  
  9. }