搜索结果
找到约 76 项符合
exit 的查询结果
按分类筛选
- 全部分类
- Linux/Unix编程 (18)
- 单片机开发 (6)
- Java编程 (6)
- 游戏 (4)
- 书籍源码 (3)
- 其他 (3)
- 源码 (3)
- 单片机编程 (2)
- Applet (2)
- 汇编语言 (2)
- 无线通信 (2)
- 软件 (2)
- 嵌入式综合 (1)
- 开发工具 (1)
- PCB相关 (1)
- 网络 (1)
- 嵌入式Linux (1)
- USB编程 (1)
- 加密解密 (1)
- Windows CE (1)
- 数学计算 (1)
- Modem编程 (1)
- matlab例程 (1)
- 微处理器开发 (1)
- Symbian (1)
- 压缩解压 (1)
- 软件设计/软件工程 (1)
- 操作系统开发 (1)
- STL (1)
- 数据结构 (1)
- *行业应用 (1)
- Linux/uClinux/Unix编程 (1)
- Jsp/Servlet (1)
- 技术资料 (1)
- VIP专区 (1)
游戏 Hello User This is nothing, but a simple program which if kept in start of windows will shut down
Hello User
This is nothing, but a simple program which if kept in start of windows will shut down the system by itself within five minutes of starting.
It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds).
U can use shutdown.exe,once started ...
Linux/Unix编程 #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h>
#include<stdio.h>
#include<string.h>
#include<limits.h>
#include<unistd.h>
#include<sys/types.h>
#define PROMPT_STRING "[myshell]$"
#define QUIT_STRING "exit\n"
static char inbuf[MAX_CANON]
char * g_ptr
char * g_lim
extern void yylex()
int main (void){
for( ){
if(fputs(PROMPT_STRING,stdout ...
操作系统开发 int main(int argc,char *argv[]) { char ch while(true) { printf("*************************
int main(int argc,char *argv[])
{
char ch
while(true)
{
printf("*************************************\n")
printf(" 1.Reader Priority\n")
printf(" 2.Writer Priority\n")
printf(" 3.Exit to Windows\n")
printf("*************************************\n")
printf("Enter your choice(1,2, ...
单片机开发 单片机播放音乐实验(汇编) org 0000h ajmp main org 000bh ajmp timer0 org 0030h timer0: clr ea djnz 33h
单片机播放音乐实验(汇编)
org 0000h
ajmp main
org 000bh
ajmp timer0
org 0030h
timer0:
clr ea
djnz 33h,exit
mov 33h,53h
djnz 32h,exit
mov 32h,52h
djnz 31h,exit1
mov 31h,51h
djnz 30h,exit1
setb f0
ajmp exit
exit1: cpl p2.1
exit: setb ea
reti
main:
mov tmod,#02h
mov ie,#82h
mov th0,#254
mov tl0,#254 ...
Linux/Unix编程 //获得当前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判断是否支持该模式 if[vga_ha
//获得当前的模式
oldmode = vga_getcurrentmode[]
//初始化
vga_init[]
//判断是否支持该模式
if[vga_hasmode[mode]]
vga_setmode[mode]
else {
printf["No such mode\n"]
exit[1]
}
//取得信息
width = vga_getxdim[]
height = vga_getydim[]
colors = vga_getcolors[]
// ...
Linux/Unix编程 //获得当前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判断是否支持该模式 if[vga_ha
//获得当前的模式
oldmode = vga_getcurrentmode[]
//初始化
vga_init[]
//判断是否支持该模式
if[vga_hasmode[mode]]
vga_setmode[mode]
else {
printf["No such mode\n"]
exit[1]
}
//获得当前的模式
mode = vga_getcurrentmode[]
info = vga_getmodeinfo[mode] ...
Linux/Unix编程 //结构 struct fb_fix_screeninfo finfo struct fb_var_screeninfo vinfo //打开设备 fd = open[
//结构
struct fb_fix_screeninfo finfo
struct fb_var_screeninfo vinfo
//打开设备
fd = open["/dev/fb0", O_RDWR]
if [!fd] {
printf["Cannot open framebuffer device.\n"]
exit[1]
}
//取得固定信息
if [ioctl[fd, FBIOGET_FSCREENINFO, &finfo]] {
printf["Error reading fixed info ...
Java编程 Program Description: The program asks the user to choice from the menu an option
Program Description: The program asks the user to choice from the menu an option
A. Check to see if a number is prime.
B. Count the number of vowels in a line.
X. Exit the program.
Linux/Unix编程 应用UNIX的fork()等系统调用
应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行 ...
STL SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming l
SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming languages. Includes: default transitions, transition args, transition guards, push/pop transitions and Entry/Exit actions. See User Manual for more info.