How to Shutdown PC using C++ ?
If you want to shutdown your Windows PC from your C++ code, use this code snippet.
#include <stdio.h>
#include <stdlib.h>
int main()
{
system("c:\\Windows\\system32\\shutdown /s");
return 0;
}
I hope this helps. Do you recommend reading this blog post? share it!