Tuesday, 17 May 2011

To shutdown system by using C program

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

No comments:

Post a Comment