如何使用c程序关闭计算机? [英] how to shutdown the computer using c program?

查看:77
本文介绍了如何使用c程序关闭计算机?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

快速回复我想提交我的项目

reply fast i want to submit my project

推荐答案

我们不做你的功课:这是有原因的。它就是为了让你思考你被告知的事情,并试着理解它。它也在那里,以便您的导师可以识别您身体虚弱的区域,并将更多的注意力集中在补救措施上。



亲自尝试,你可能会发现它不是和你想的一样困难!
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!


首先阅读解决方案1然后尝试.. :)



First read solution 1 and then try.. :)

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





C程序关闭或关闭计算机 [ ^ ]



关闭PC的C程序 [ ^ ]



C程序关闭或关闭计算机 [ ^ ]



C Program F或者在Windows 7中关闭并重新启动计算机 [ ^ ]



自动生成的stdio删除结束标记



C program to shutdown or turn off computer[^]

C program to shutdown PC[^]

C program to shutdown or turn off computer[^]

C Program For Shutdown And Restart Computer In Windows 7[^]

auto-generated closing tags for stdio deleted


最简单的方法是使用系统 [ ^ ]致电发出关闭适用于您的操作系统的命令。

例如

To simplest way is possibly using system[^] call to issue the shutdown command appropriate for your operative system.
for instance
system("shutdown -h now");



Linux

(请注意:您必须拥有相应的权限才能成功发出命令)。


on Linux
(Please note: you must have the appropriate privileges, in order to successfully issue the command).


这篇关于如何使用c程序关闭计算机?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆