B
Bob Then
How can I run a compiled C program in Perl I tried using
use Shell(prog);
prog("","");
and
use Shell(./prog);
prog("","");
and
use Shell(prog);
../prog("","");
but non of them worked.
I know the first one didn't work because it needs the ./ at the start
use Shell(prog);
prog("","");
and
use Shell(./prog);
prog("","");
and
use Shell(prog);
../prog("","");
but non of them worked.
I know the first one didn't work because it needs the ./ at the start