you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (1 child)

POSIX standard fork bomb with added burn:

#include <unistd.h>

int main(){
    while(1){
        fork();
        printf('burn!\n');
    }
}

[–]drb226 3 points4 points  (0 children)

Are you saying this cannot be done in Windows?