Hi, I have two c/c++ programs running at the same time and program A needs to pass some data to program B to be processed and pass back to program A.
I could store the data into a file and have program B access it, but I am thinking of using the piping command in Unix to pass the data back and forth. This way I don't need to allocate disk space to hold the data plus it will be a lot faster. Can anyone tell me how I can accomplish that, comments or suggestions. thank you in advance.....
I could store the data into a file and have program B access it, but I am thinking of using the piping command in Unix to pass the data back and forth. This way I don't need to allocate disk space to hold the data plus it will be a lot faster. Can anyone tell me how I can accomplish that, comments or suggestions. thank you in advance.....