I used open3 of perl to run a command, the custom command behaves like a shell it takes input and displays output and waits for another input till quit is given
Now I've to use same command and write it in C language, do we have something similar to IPC::Open3 in C or C++ ?
popen() supports one-way communications. If you want bidirectional data exchange, you'll need 2 pipes. Jeff Epler came up with the following bidirectional popen2.c implementation: