我如何能够在C开始一个新进程? 我尝试了fork(
),但我要在新过程中提及一些职能。 我已经做了一些工作,但可以找到关于哪些改进的适当信息:fork()
,vfork(
,exec(>
或
For example, let s say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems like a real waste ...