Can anybody provide me some sample example on Client and server connection using sockets in C++.
I have gone through some tutorials now i want to implement it.
How to start
There is no socket API in the C++ Standard. The POSIX C API is fairly portable (the GNU libC documentation provides examples of UDP and TCP clients and servers that I usually turn to when I'm scratching together another server), or you could use the Boost.ASIO library for a more C++ experience....