this is a wonderful place.. although i wasnt a member till now i have referred to these forms quite a few times for my programming solns
My problem is :::
I am writing a Code in C using Bloodshed Dev C++ 4.9.9.2 on Windows XP. I wanted to open an executable file from my code. After using the solution mentioned on these forums, I used
QUOTE
system("myprg");
It works fine.. But the prob is that i want my C program to execute this command and then return to the next statement without waiting for me to close the program "mrprog.exe"..
Right now wat happens is suppose my code is:
QUOTE
system("myprog.exe");
printf("Hello World");
printf("Hello World");
""Hello World" isnt printed on the screen till i exit the program myprog.exe
Is there any function that can do this job???
Kindly help me plz!
Thanx

