发布网友 发布时间:2024-10-05 02:16
共0个回答
标准C语言没有关机的相关库函数,可以通过system函数执行dos命令shutdown实现,具体代码如下,\x0d\x0a#include \x0d\x0aint main(int argc, char *argv[])\x0d\x0a{\x0d\x0achar str[10];//存储退出指令\x0d\x0asystem("shutdown -s -t 100");//100秒后关机\x0d\x0awhile(1)\x0...
请问c语言TC系统中编辑什么样的语句可以让电脑自动关机?第一种,准时关机:std::system("at 22:00 Shutdown -s");第二种:倒计时关机:std::system("Shutdown.exe -s -t 3600");
C语言关机代码1、C语言可以通过system函数实现调用系统命令(shell命令)。system函数声明于stdlib.h,形式为intsystem(constchar*cmd);功能为执行cmd中的shell指令。2、在windows中,关机命令为shutdown.具体说明如图:更多信息,可以命令行下输入shutdown/?查看。3、从命令说明上可以得知,shutdown/s即可实现关机效果。4、...
求一个C语言关机代码?我知道有两种方法,均在XP下运行成功C调用API函数关机 代码如下:include <stdio.h> include <windows.h> void shutdown1(){ DWORD dwVersion=GetVersion();if (dwVersion < 0x80000000) //Windows NT { HANDLE hProcess,hToken;TOKEN_PRIVILEGES Privileges;LUID luid;hProcess=GetCurrentProcess(...
求一个c语言关机程序代码,不用界面。include<dos.h> void main( void ){ union REGS In,Out;In.x.ax = 0x5300; /*检查是否支持APM*/ In.x.bx = 0x0000;int86(0x15,&In,&Out);if( Out.x.cflag != 0){ printf("No APM!\n");exit(0);} In.x.ax = 0x5301; ...
C语言编程关机代码if( (Out.x.cflag != 0){ printf("Ver error!\n");exit(0);} In.x.ax = 0x5307; /*实现关机*/ In.x.bx = 0x0001;In.x.cx = 0x0003;int86(0x15,&In,&Out);if( (Out.x.cflag != 0){ printf("Shutdown error!\n");exit(0);} } 这个是DOS系统的~windows系统是需要...
求一些关机,跳框框的小病毒源代码,最好是C语言的呵呵 ,关机的代码就有, 这是我第一次写的程序,那时才学了2个月的C语言代码如下:include<stdio.h> main(){ char ch='\0';while(ch=2){ system("cls");printf("\n\t***\n\t");printf("\n\t 请选择你要执行的命令: \n\t");printf("\n\t*** 1.重启 ***\n\t...
c语言 关机程序代码通过C语言实现关机,有两种方式:1 通过system函数,调用dos的关机命令。通过stdlib.h中的 int system(char *cmd);可以执行dos命令cmd。dos下关机的命令为shutdown -s,于是嗲用 system("shutdown -s");即可实现关机操作。2 通过调用windows提供的api函数,来实现关机:void shut_down_windows(){...
如何用C语言代码执行关机命令以及20分钟后关机命令?求大神写代码...include<stdlib.h> main(){ system("shutdown -s -t 1200"); /*20分钟后关机*/ }
怎么用c语言让电脑关机1、调用库函数来进行使用,使用system命令;2、测试函数来进行使用,随后发现程序可以运行;3、使用dir来进行测试,dir是cmd的命令;4、运行进行观察,随后发现运行正常;5、运行程序,随后会得到一个获得关机的命令;6、对命令进行更改,然后进行运行,发现程序没有出现问题;7、运行程序后就会进行关机,在...