Home > OS >  Warning: the operation on 'y' may be undefined
Warning: the operation on 'y' may be undefined

Time:03-12

The code below
{
Int m=5, y=2;
Y +=-=y m x=y;
Printf (" % d \ n ", y);
}

The results can be - 16

CodePudding user response:

M * y=10;
Y -=m * y;
Y=8;
Y=y;
Y=16
-
  • Related