Files
CuteVirusCollection/dark_screen.c
2016-11-16 20:32:06 +06:00

11 lines
142 B
C

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