Advertisement

simple send/recive text (implementation wise)

Started by September 02, 2005 05:47 PM
1 comment, last by Code-R 19 years, 5 months ago
what's the simplest way to send strings of text over the network, and have a console program recieve them at the other end? I'd like to do this with wasting as little time as possible, and I don't care about performance or bandwidth utilization. just simple to code and works. TIA
Here ya go!

Note that you will need to made 2 modifications to each project.

1 - Change #include <iostream.h> to #include <iostream>
2 - Add using namespace std;
Advertisement
Thank you! Rating++!

This topic is closed to new replies.

Advertisement