帅得不敢出门stupidpig.blog.chinaunix.net
帅得不敢出门
全部博文(356)
VC常见错误与技巧(15)
其他(12)
文件相关(8)
窗体技巧(16)
网络编程(9)
控件相关(12)
数据库(1)
字符操作(10)
其他(0)
库函数源代码(9)
一般知识与技巧(22)
指针与内存相关(22)
试题.面试题(15)
网络(1)
模式-模板-STL(8)
易错与解误区(8)
书评(8)
数据结构与算法(6)
2020年(17)
2019年(9)
2018年(26)
2017年(5)
2016年(11)
2015年(20)
2014年(2)
2013年(17)
2012年(15)
2011年(4)
2010年(7)
2009年(14)
2008年(209)
JenfeeMa
zzfzzf68
徐风轻吟
formycut
alang85
jack_zyk
xdh0817
fbtj
danglins
yanfanju
freedom1
clementi
iibull
smile124
安和桥往
2233gogo
分类: C/C++
2008-06-07 13:48:26
Creates and executes a new process.//创建并运行一个新进程 intptr_t _spawnl( int mode, const char *cmdname, const char *arg0, const char *arg1, ... const char *argn, NULL ); #include <process.h>#include <stdio.h>#include <conio.h>int main(void){ char *soft_path = "c:\\test.exe"; if (-1 == _spawnl(_P_WAIT, soft_path, NULL)) { perror("Error from spawnl"); return -1; } return 0;}
上一篇:[原]C++实现ROL与ROR
下一篇:侯捷观点
chinaunix网友2010-08-04 17:50:33
_spawnl(_P_WAIT, soft_path,soft_path, NULL)) 应该是这样才对吧
登录 注册