want to run c program from php using exec() function
- by Abhimanyu
hi
i m trying to run one c executable file using php exec().
when c contains a simple program like print hello i m using exec('./print.out') its working fine.but when i need to pass a argument to my c program i m uing exec('./arugment.out -n 1234') it not working .can any body tell me how to pass arugment using exec to c program.