複製鏈接
請複製以下鏈接發送給好友

spawnle

鎖定
spawnle是一個計算機的函數名,具有創建並運行子程序的功能。
中文名
spawnle
功 能
創建並運行子程序
用 法
int spawnle
簡    介
函數名
arg1,..., argn, NULL;
程序例:
/* spawnle() example */
#include <process.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
int result;
clrscr();
result = spawnle(P_WAIT, "tcc.exe", NULL, NULL);
if (result == -1)
{
perror("Error from spawnle");
exit(1);
}
return 0;
}