No, you cannot transfer data from one PC to another "using" PCM per se. However, you can certainly transfer PCM encoded data using C++ and socket programming, which is actually using TCP/IP or UDP/IP etc to transfer your data between PCs.
You would do this by establishing a socket connection between your sending/receiving machines, and then streaming your PCM encoded data into the socket interface on the sending side, and reading it back out at the receiver side.
manpreet
Best Answer
2 years ago
i have an question for you,that can we transfer data from one pc to another using PCM(Pulse Coded Modulation)technique(With cpp's socket programming)?If yes then how?