fork(1) download
  1. #include <stdio.h>
  2. #include <inttypes.h>
  3.  
  4. int main(void) {
  5. uint16_t x = 1000;
  6. int y = x;
  7. printf("%d", y);
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/258985/101
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
1000