-
arm9开发板上的例子,可以学习一下有简单的c程序
arm9开发板上的例子,可以学习一下有简单的c程序-ARM9 development board example, can learn about a simple c program
- 2022-01-28 13:00:37下载
- 积分:1
-
字符串指针,以探讨指针如何工作
String Pointers to explore how the pointer work
-The program takes lines from standard input and keeps the last n of them in memory as it goes through standard input. When it gets to an EOF, it prints the last n lines out. You may assume n is less than 2000 and each individual line is not longer than 1000 including the newline and the null terminator.
- 2022-02-01 01:57:48下载
- 积分:1
-
一个在linux/unix系统下的多线程的程序设计方法说明
一个在linux/unix系统下的多线程的程序设计方法说明-A linux/unix system under multi-threaded program design methodology
- 2022-02-26 00:44:20下载
- 积分:1
-
linux内核情景分析,针对于对内核有一定了解的学习者,详细分析了内核中mmc等相关部分。
linux内核情景分析,针对于对内核有一定了解的学习者,详细分析了内核中mmc等相关部分。-linux kernel scenario analysis to address the kernel has a certain understanding of the learner, detailed analysis of a kernel mmc and other related parts.
- 2022-05-18 01:06:02下载
- 积分:1
-
cornermp
CornerMP-1.2.tar.bz2.rar CornerMP-1.2.tar.bz2.rar
- 2022-10-03 16:45:03下载
- 积分:1
-
sip proxy server source
sip代理服务器源码-sip proxy server source
- 2022-02-09 19:18:38下载
- 积分:1
-
UNIX环境中利用信号完成进程间的通信
UNIX环境中利用信号完成进程间的通信-UNIX environment complete signal inter-process communication
- 2022-07-28 05:52:09下载
- 积分:1
-
系统。他致力于发展为恋人!
unix.v6.v7.源码,献给开发系统的爱好者!-unix.v6.v7. FOSS, dedicated to the development of lovers!
- 2022-07-05 13:13:30下载
- 积分:1
-
linux目录架构,linux系统下所有目录详细描述
linux目录架构,linux系统下所有目录详细描述-linux
- 2022-07-07 11:10:03下载
- 积分:1
-
//初始化
if(initscr() == NULL) {
perror("initcurs")
exit(EXIT_FAILUR...
//初始化
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 the cursor within the window.
")
mvaddstr(17, 1, "Press q to quit.
")
refresh()
wrefresh(win) - //初始化
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 the cursor within the window.
")
mvaddstr(17, 1, "Press q to quit.
")
refresh()
wrefresh(win)
- 2023-08-24 18:05:03下载
- 积分:1