I want to execute c program in php. how do I do this? can I do with exec or system function? :rolleyes:
well, you know the function, why don't you use it?
$output = exec ("/path/to/bin/c");
that' it 😉
("c" must be compiled, of course)