Today's Question:  What does your personal desk look like?        GIVE A SHOUT

C program to shutdown or turn off computer

  programmingsimplifie        2011-10-10 07:08:31       11,227        0    

C Program to shutdown your computer :- This program turn off i.e shutdown your computer system. Firstly it will asks you to shutdown your computer if you press 'y' the your computer will shutdown in 30 seconds, system function of "stdlib.h" is used to run an executable file shutdown.exe which is present in C:\WINDOWS\system32 in windows-xp. You can use various options while executing shutdown.exe for example -s option shutdown the computer after 30 seconds, if you wish to shutdown immediately then you can write "shutdown -s -t 0" as an argument to system function. If you wish to restart your computer then you can write "shutdown -r".

C programming code for Windows XP

#include<stdio.h>
#include<stdlib.h>
 
main()
{
   char ch;
 
   printf("Do you want to shutdown your computer now (y/n) ");
   scanf("%c",&ch);
 
   if( ch == 'y' || ch == 'Y' )
      system("C:\\WINDOWS\\System32\\shutdown -s");
 
   return 0;
}

C programming code for Windows 7

#include<stdio.h>
#include<stdlib.h>
 
main()
{
   char ch;
 
   printf("Do you want to shutdown your computer now (y/n)\n");
   scanf("%c",&ch);
 
   if( ch == 'y' || ch == 'Y' )
      system("C:\\WINDOWS\\System32\\shutdown /s");
 
   return 0;
}

To shutdown immediately use "C:\\WINDOWS\\System32\\ shutdown /s /t 0". To restart use /r instead of /s.

Source : http://www.programmingsimplified.com/c-program-shutdown-computer

CODE  WINDOWS  C  SHUTDOWN  COMMAND 

Share on Facebook  Share on Twitter  Share on Weibo  Share on Reddit 

  RELATED


  0 COMMENT


No comment for this article.