spawnl函数使用方法
#include <stdio.h>#include <stdlib.h>
#include <process.h>
#include <stdio.h>
#include <conio.h>
#include <dos.h>
int main()
{
//-------------------
int result = spawnl(P_WAIT, "s.bat", NULL);
if (result == -1)
{
perror("Error from spawnl");
exit(1);
}
return 0;
}
上面的程序运行出来个断言错误
但是程序中没有使用assert语句
这个怎么回事??