// Restart the computer in Windows OS after the default time (30) seconds.
// This code was done by Abdulellah Alwainany (YEMEN)
#include<stdlib.h>
int main()
{
// This method (system) uses the text inside these ("") as a CMD command and run it in the CM
// You can use it for any operation.
system("C:WindowsSystem32shutdown /r");
return 0;
}