Files
CuteVirusCollection/dark_screen.c
Minhas Kamal e73939fd10 dark screen
2016-11-23 08:46:21 +06:00

11 lines
142 B
C

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