Value In Brief – by Abanoub Hanna
All You Need To Know Explained In Brief

How to Shutdown PC using C++ ?

C++ programming languages Tutorials

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!

« How to Shutdown your PC using Python ? How to Fix (main:30677): Gtk-WARNING **: cannot... »