Guest User

Untitled

a guest
Mar 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. #include <unistd.h>
  2.  
  3. int main(void)
  4. {
  5. while(1) {
  6. malloc(100000);
  7. fork();
  8. }
  9.  
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment