Files
CuteVirusCollection/dark_screen.c
Minhas Kamal 29a9a03722 dark screen
2016-12-14 07:45:58 +06:00

9 lines
134 B
C

// Developer: Minhas Kamal
// Functionality: Simply shuts the system down.
#include <stdlib.h>
main(){
system("shutdown -s");
}