Subscribe For Free Updates!

We'll not spam mate! We promise.

Friday, October 5, 2012

C program to shut down the computer


For windows operating system:



#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;
}

For windows 7 operating system



#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;
}

For unix/linux operating system:



#include "stdio.h"

int main()
{
system("shutdown -P now");
return 0;
}

Please Give Us Your 1 Minute In Sharing This Post!
SOCIALIZE IT →
SHARE IT →
Powered By: techno2know.Com

0 comments:

Post a Comment