fork(1) download
  1. #include<stdio.h>
  2.  
  3. int main() {
  4. int i =-3;
  5. unsigned short u;
  6. u=i;
  7. // printf ("%u",u);
  8. printf("%d",u);
  9. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
65533