Linux Pipe for Communication Between Java and C++ program
Pipe is neat. A pipe is a way to connect the output of one program to the input of another program without any temporary file. This simple test contains a Java program and a C++ program. The output of Java program is used as input for “wc” command, and the output is then used by … Read more