On Sat, 13 Jan 2007 04:28:01 -0800 (PST)
I AM HERE <[EMAIL PROTECTED]> wrote:

>   in c++ if i won to execute a file (let say it is short mucis clip
> located in C drive) then wt path should i follow, is there any
> restriction that i should use windows compatible compiler also plz
> tell me wh complier will do this job. thanku 4 ur consideration

plz dnt spk in syllables. plz read 

How To Ask Questions The Smart Way
http://catb.org/~esr/faqs/smart-questions.html

int p;

p = fork();

if( p == 0 ) {
  /**
   * child
   */
  execl( program_name, NULL );
}

or

system( program_name );

one blocks, the other doesn't.

-- 
Regards, Ed                      :: http://www.bsdwarez.net
proud c++ person
Mr. T’s prediction for his inevitable fight with Vin Diesel: 
“Pain!” 

Reply via email to