Pages

Saturday, March 24, 2012

WAP to shutdown your computer in C

/*It is complied on Turbo C++ 3.0 Or Use CodeBlock Complier*/  

#include<stdio.h>
#include<process.h>
    main( )
         {
              system("shutdown -s");
          }    


1 comment: