fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. unsigned short x,z;
  6. short y;
  7.  
  8. x = 65535;
  9. y = x;
  10.  
  11. printf("y=%d ", y);
  12.  
  13. z = y;
  14. printf("z=%u", z);
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
y=-1 z=65535