Shutdown PC

Shutdown PC

C-program to shut down pc :-)





#include <stdio.h>
#include <stdlib.h>

int main()
{
   system("C:\\WINDOWS\\System32\\shutdown /s");

   return 0;

}

Comments