Blame view

propagation.c 106 Bytes
42a7f240   Pierre Cwik   optimisation 19 mai
1
2
3
4
5
6
   int main(void){
  int a=1,b=2,c=3, i=2;
  int d=a*c,e=d+2*b;
  while(i > 0) { i--; if(e!=2) e--; }
  return e;
  }