Re: execute a program using C

2006-04-05 Thread listrcv
Deephay wrote: Greetings all, I am wondering that if there is way to execute a compiled program using C (either system calls / library calls)? Thx a lot! Deephay system() fork() GH -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL P

Re: execute a program using C

2006-04-05 Thread Star King of the Grape Trees
Deephay wrote: Greetings all, I am wondering that if there is way to execute a compiled program using C (either system calls / library calls)? Thx a lot! Deephay see "apropos execute", and take your pick. You probably want to use system, though. -- To UNSUBSCRIBE, email to [EMAIL PROTEC

Re: execute a program using C

2006-04-05 Thread Deephay
thx, here's also a tutorial about this:http://www.gidforums.com/t-3369.htmlOn 4/5/06, Jon Dowland <[EMAIL PROTECTED]> wrote:At 1144263587 past the epoch, Deephay wrote: > Greetings all,>>   I am wondering that if there is way to execute a compiled program> using C (either system calls / library ca

Re: execute a program using C

2006-04-05 Thread Joris Huizer
Deephay wrote: Greetings all, I am wondering that if there is way to execute a compiled program using C (either system calls / library calls)? Thx a lot! Deephay Maybe it's just me, but I don't really get what your question is - what do you mean by 'executing a compiled program using C' ?

Re: execute a program using C

2006-04-05 Thread Jon Dowland
At 1144263587 past the epoch, Deephay wrote: > Greetings all, > > I am wondering that if there is way to execute a compiled program > using C (either system calls / library calls)? Thx a lot! See the manpages for exec(3) and system(3) -- fork(2) is also useful. -- Jon Dowland http://alcopop.o

execute a program using C

2006-04-05 Thread Deephay
Greetings all,  I am wondering that if there is way to execute a compiled programusing C (either system calls / library calls)? Thx a lot!Deephay