C/C++ program to shutdown a system
How to shutdown your computer in Linux and/or Windows?
The idea is to use system() in C. This function is used to invoke operating system commands from C program.
Linux OS:
// C program to shutdown in Linux #include <stdio.h> #include <stdlib.h> int main() { // Running Linux OS command using system system ( "shutdown -P now" ); return 0; } |
Windows OS:
Shutdown/ Log off/ Restart a Windows OS
We will make use of system() from < stdlib.h > to perform a system operation with the help of a C program.To perform any of the afore-mentioned system operation we will code as:
#include <stdio.h> #include <stdlib.h> int main() { system ( "c:\\windows\\system32\\shutdown /i" ); return 0; } |
The argument to the system function is the path to OS and /i is one of the entity from the vast options available to us.To view the options, we run cmd and type:
C:\Users\User>shutdown
The shutdown command presents us with a list of options available for us.These are :
To perform different operations, we just replace the last “/path” in system() argument.The common operations are:
Shutdown
system("c:\\windows\\system32\\shutdown /s");
Restart
system("c:\\windows\\system32\\shutdown /r");
Logoff
system("c:\\windows\\system32\\shutdown /l");
This article is contributed by Sahil Chhabra and Amartya Ranjan Saikia. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- system() in C/C++
- Amazing stuff with system() in C / C++
- Timer in C++ using system calls
- Print system time in C++ (3 different ways)
- Hello World Program : First program while learning Programming
- Program for n-th even number
- Program to compare m^n and n^m
- Output of C++ Program | Set 10
- How to compile 32-bit program on 64-bit gcc in C and C++
- Program to compute Log n
- Output of C++ Program | Set 14
- Output of C++ Program | Set 16
- Output of C++ Program | Set 18
- Write a URL in a C++ program
- Output of C Program | Set 29