Guest User

Untitled

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int fd;
  5. fd = open("/dev/null");
  6. printf("%i\n", read(fd));
  7. printf("%i\n", EOF);
  8. close(fd);
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment