fork download
  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int
  5. main(void)
  6. {
  7. ssize_t nread;
  8.  
  9. nread = 123;
  10. printf("%zd\n", nread);
  11. printf("%d\n", &nread);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
123
-1076107876