10 lines
155 B
C
10 lines
155 B
C
/*
|
|
* C Program to Shutdown or Turn Off the Computer in Linux.
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
system("shutdown -P now");
|
|
return 0;
|
|
} |