搜索结果
找到约 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)
单片机编程 STM32F4-Discovery EXIT keil&iar例程
STM32F4-Discovery EXIT keil&iar例程
Linux/Unix编程 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程
1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程
2、 编写一段程序实现以下功能:
a) 使用系统调用fork()创建两个子进程
b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。
c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID
3、 ...
单片机开发 /* Check_SST_39VF400A Check manufacturer and device ID /* CFI_Query CFI Query Entry/Exit command se
/* Check_SST_39VF400A Check manufacturer and device ID
/* CFI_Query CFI Query Entry/Exit command sequence
/* Erase_One_Sector Erase a sector of 2048 words
/* Erase_One_Block Erase a block of 32K words
/* Erase_Entire_Chip Erase the contents of the entire chip
/* Program_One_Word Alter data in one wo ...
加密解密 URL编码 如“exit”编码为“%65%78%69%74”
URL编码 如“exit”编码为“%65%78%69%74”
单片机开发 电子琴,从键盘接收字符,不回显,若为ESC键,则转EXIT,放音
电子琴,从键盘接收字符,不回显,若为ESC键,则转EXIT,放音
单片机开发 继电器控制,设8255为A口输入,C口输出,延时5s,是否有键按下,若有则转exit,查询8255的PA0是否为高电平,若不是则继续,定时时间到
继电器控制,设8255为A口输入,C口输出,延时5s,是否有键按下,若有则转exit,查询8255的PA0是否为高电平,若不是则继续,定时时间到,子程序返回
Linux/Unix编程 I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driv
I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driver to use this library. I choose array for ready queue,and strcut for Thread Control Block.
Java编程 一个简单的记事本代码.实现 File..new/open/save/exit功能
一个简单的记事本代码.实现 File..new/open/save/exit功能
Linux/Unix编程 Error Exit Code for Linux operating system. This code is efficient and modified by a team from a re
Error Exit Code for Linux operating system.
This code is efficient and modified by a team from a reputed institute
Linux/Unix编程 //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //设置模式
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILURE)
}
//设置模式
cbreak()
noecho()
keypad(stdscr, TRUE)
//建立窗口
win = newwin(h, w, 3, 20)
box(win, 0, 0)
keypad(win, TRUE)
wmove(win, cury, curx)
mvaddstr(16, 1, "Press arrow keys to move ...