搜索资源列表
c语言深入学习必备参考例子
- 文件名:c语言深入学习必备参考例子 很多经典的c例子:高级的宏定义,深奥的c内存操作,灵活的字符串操作,还有流操作,-File Name : c-depth language learning essential source of many examples of classic example c : Acer High definition esoteric c memory operation, flexible string manipulation, and flow opera
guandaotongxin
- 1、 了解系统调用pipe()的功能和实际原理 2、 编写一段程序,使用管道实现父子进程之间的通信 a) 使用系统调用fork()创建一个子进程 b) 子进程调用函数write()向父进程发送自己的进程ID和字符串” s sending a message to parent.\\n”。 c) 父进程调用函数read()通过管道读出子进程发来的消息,将消息输出屏幕,然后终止 -1, the understanding of the system call pipe () fu
fork_textcanjian
- 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程 b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。 c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID 3、 编写一段程序实现以下功能: a) 使用系统调用fork()创建一个子进程 b)
bm
- 字符串匹配算法,单模式字符串匹配。 使用c语言编写
FV(SBMH)
- SBMH算法。为字符串匹配算法。c语言开发。
gfx
- unix(sco,aix)下面的c语言函数库。 包括基本的字符串操作,socket操作,xml操作,tree操作等-unix (sco, aix) following c language function library. Including basic string operations, socket operations, xml operation, tree manipulation
Unix
- 两个字符串连接程序 进程管理的四个设计 概要 -两个字符串连接程序 #include "stdio.h" main() {char a[]="acegikm" char b[]="bdfhjlnpq" char c[80],*p int i=0,j=0,k=0 while(a[i]!= \0 &&b[j]!= \0 ) {if (a[i] { c[k]=a[i] i++ } else c[k]=b[j++] k++ } c
who
- 系统调用 将字符串参数name的内容拷贝到内核中保存下来 将内核中由iam()保存的名字拷贝到name指向的用户地址空间中,同时确保不会对name越界访存-System call will copy the contents of the string parameter name into the kernel by the kernel to survive iam () to save a copy to the name point to the name of the user add
receive.c
- 这里主要是运用串口的终端来实现接受串口发送的字符串的功能。实现通过串口通信-Here is mainly used to achieve the acceptance of serial terminal serial port to send the string functions. Achieved through the serial communication
receive1.c
- 这个主要是linux下用来接受串口中接受通过串口传来的字符串,并将其保存到一个指定的文件中。-This is mainly used to receive serial port under linux, accepted the string coming through the serial port, and save it to a specified file.
send.c
- 这个程序是在linux下利用串口发送数据,把字符串通过标准的语句进行发送。-This procedure is to make use linux serial port to send data to a string for transmission through a standard statement.
Linux
- linux专用的C语言标准函数。如将字符串转换成整型或者浮点型-linux dedicated C language standard function
linux_C_Library
- Linux C的库函数集合的使用,包括文件操作函数,进程,信号处理,内存字符串等详细说明。-Linux C library function, the use of the collection, including file manipulation functions, processes, signal processing, memory, string and other details.
Myshellv0.2
- 在myshell v0.1的基础上,增加新的功能:在父进程中接收控制台输入一行字符串,作为用户发出的Linux命令,如ls /usr/*.c <回车>,在创建一个子进程后,子进程通过调用execlp()系统调用,执行这条命令。-In the myshell v0.1 based on adding new features: In the parent process to receive the console input line of string, as issued by
Myshellv0.3
- 在myshell v0.1的基础上,增加新的功能:在父进程中接收控制台输入一行字符串,作为用户发出的Linux命令,如ls /usr/*.c <回车>,在创建一个子进程后,子进程通过调用execlp()系统调用,执行这条命令。-In the myshell v0.1 based on adding new features: In the parent process to receive the console input line of string, as issued by
threecodes
- 1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”,然后使用exec(族)系统调用打印当前目录下文件和子目录下
md5
- 源码用C写的里面有对字符串作md5变换的接口也有对文件进行md5变换的接口-code is written by c, this program offers md5 algorithm interface both for string and file.
mystring
- 实现常用Linux C字符串处理函数,如strlen() strcpy() strsep()等-mystring
searchemail.c.tar
- 通过对一堆字符串分析,找出正确的email。并将其打印出来-Through analysis of a bunch of strings, find the correct email. And print it
pick_up.c
- 实现将一段数字字符串,拆分成数字串和字符串。-For a string of numbers, split into a string of numbers and strings.