- 1
is there a C++ network
3 Respostas
+ 3
Do you mean networking in C++? Yes, it's possible but I would describe it as painful. C++ itself doesn't have a networking component so you'll have to rely ond 3rd party libraries(which is not so bad).Many people swear by Boost.Asio but I don't like the structure.netlib-cpp looks clean but I never used it.curl is lower level and incredibly powerful. Or you could just include winsock2 and go from there, it's not cross-platform, it's very low level but at least it's already there on any Windows installation.
+ 1
What do you mean?
0
sorry i want create app use the internet by c++ is it possible.