How can I link 2 .exe in c++?
I mean to link them and transfe开发者_JAVA百科r some attribute. for example first program send array and second program get , then send another array.
The term you are looking for is probably IPC: Inter Process Communication.
There are tons of ways to do this. If you need your two programs to talk together (not just one direction), you might want find it easiest to use some sort of networking library.
精彩评论