Tuesday, 8 April 2014

C Program To Shutdown Or Turn Off Computer...!!!


This program will help you to turn off or shutdown your computer system. Firstly it will asks you to shutdown your computer if you press 'y' then your computer will shutdown with in few seconds, system function of "stdlib.h" is used to run an executable file shutdown.exe which is present in 
C:\WINDOWS\system32 in windowsXP,7..!!

You can use various options while executing shutdown.exe for example-s option shutdown the computer after few seconds, if you want to shutdown immediately then you can write "shutdown-s-t o" as an argument to system function. If you wish to restart your computer then you can write "shutdown-r"..!!

If you are using Turbo C Compiler then execute your file from folder. Press F9 to build your executable file from source program. When you run from within the compiler by pressing Ctrl+F9 it may not work..!!!

C Programming Code for Windows XP
            
                  


C Programming Code for Windows 7                                                                                                  
                      

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

No comments:

Post a Comment