#include <stdlib.h>
#include <stdio.h>
#include<conio.h>
void main()
{
int ch;
printf("\n*******SHUTDOWN MENU*********\n");
printf("1.SHUTDOWN\n2.RESTART\n3.LOGOFF\n4.HIBERNATE\n5.EXIT");
printf("\nEnter choice : ");
scanf("%d",&ch);
switch(ch)
{
case 1:system("shutdown
-s");
break;
case 2:system("shutdown
-r");
break;
case 3:system("shutdown
-l");
break;
case 4:system("shutdown
-h");
break;
case 5:exit(1);
break;
default:printf("Wrong
Choice");
}
getch();
0 yorum:
Yorum Gönder