Search This Blog

C Program to Hibernate Windows

Do you want to hibernate your Windows computer from c? This is a c program to hibernate Windows operating System. If you execute this c program, it will hibernate your Windows computer instantly. The following is the c code to hibernate Windows:

//C Program to hibernate Windows
#include
void main()
{
system("shutdown /h");
}

No comments: